Skip to content

Commit

Permalink
improvement: simplified container handling in extractor
Browse files Browse the repository at this point in the history
  • Loading branch information
karsten-klein committed Sep 6, 2024
1 parent bac6a79 commit 586088e
Show file tree
Hide file tree
Showing 3 changed files with 105 additions and 263 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,10 @@
<properties>
<artifact.inventory.enabled>${ae.extractor.validation}</artifact.inventory.enabled>

<ae.extractor.analysis.dir>${project.build.directory}/classes/analysis</ae.extractor.analysis.dir>

<!-- use properties to explicitly define image repo and tag to use
<!-- use properties to explicitly define image repo and tag to use -->
<image.repository></image.repository>
<image.repo></image.repo>
<image.tag></image.tag>
-->

<image.id>${image.repo}:${image.tag}</image.id>
</properties>

<build>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.metaeffekt.example.documentation</groupId>
<artifactId>ae-container-extractors</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>

<artifactId>ae-container-extractor</artifactId>
<packaging>jar</packaging>

<properties>
<artifact.inventory.enabled>${ae.extractor.validation}</artifact.inventory.enabled>

<ae.extractor.analysis.dir>${project.build.directory}/classes/analysis</ae.extractor.analysis.dir>
<ae.extractor.validation>false</ae.extractor.validation>

<image.registry>quay.io/keycloak</image.registry>
<image.repo>keycloak</image.repo>
<image.tag>25.0.0</image.tag>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.metaeffekt.core</groupId>
<artifactId>ae-inventory-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

</project>
Loading

0 comments on commit 586088e

Please sign in to comment.