-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improvement: simplified container handling in extractor
- Loading branch information
1 parent
bac6a79
commit 586088e
Showing
3 changed files
with
105 additions
and
263 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
extractors/container-extractors/keycloak-container-extractor/pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.