-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[maven-release-plugin] prepare release 0.1.5
- Loading branch information
Showing
15 changed files
with
1,059 additions
and
1,059 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
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 |
---|---|---|
@@ -1,22 +1,22 @@ | ||
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>io.github.Riduidel.aadarchi</groupId> | ||
<artifactId>system</artifactId> | ||
<version>0.1.5-SNAPSHOT</version> | ||
</parent> | ||
<artifactId>adr-tickets-extractor</artifactId> | ||
<name>Aadarchi : ADR ticket extractor</name> | ||
<description>Provides mechanisms to initialize repository elements AND include project ADR from GitHub issues</description> | ||
<dependencies> | ||
<dependency> | ||
<groupId>io.github.Riduidel.aadarchi</groupId> | ||
<artifactId>base</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.freemarker</groupId> | ||
<artifactId>freemarker</artifactId> | ||
</dependency> | ||
</dependencies> | ||
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>io.github.Riduidel.aadarchi</groupId> | ||
<artifactId>system</artifactId> | ||
<version>0.1.5</version> | ||
</parent> | ||
<artifactId>adr-tickets-extractor</artifactId> | ||
<name>Aadarchi : ADR ticket extractor</name> | ||
<description>Provides mechanisms to initialize repository elements AND include project ADR from GitHub issues</description> | ||
<dependencies> | ||
<dependency> | ||
<groupId>io.github.Riduidel.aadarchi</groupId> | ||
<artifactId>base</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.freemarker</groupId> | ||
<artifactId>freemarker</artifactId> | ||
</dependency> | ||
</dependencies> | ||
</project> |
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 |
---|---|---|
@@ -1,112 +1,112 @@ | ||
<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/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>io.github.Riduidel.aadarchi</groupId> | ||
<artifactId>system</artifactId> | ||
<version>0.1.5-SNAPSHOT</version> | ||
</parent> | ||
<artifactId>archetype</artifactId> | ||
<packaging>maven-archetype</packaging> | ||
|
||
<name>Aadarchi : Archetype</name> | ||
<description>Easily create configuration to document your project with this archetype</description> | ||
|
||
<dependencies> | ||
<!-- This dependency ensures the build order is the one we want (in other words it allows base to build before archetype) --> | ||
<dependency> | ||
<groupId>io.github.Riduidel.aadarchi</groupId> | ||
<artifactId>base</artifactId> | ||
<version>${project.version}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<extensions> | ||
<extension> | ||
<groupId>org.apache.maven.archetype</groupId> | ||
<artifactId>archetype-packaging</artifactId> | ||
<version>3.1.2</version> | ||
</extension> | ||
</extensions> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-archetype-plugin</artifactId> | ||
<version>3.1.2</version> | ||
<configuration> | ||
<properties> | ||
<!-- Used in integration test to generate the pom --> | ||
<aadarchi-used-version>${project.version}</aadarchi-used-version> | ||
</properties> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-resources-plugin</artifactId> | ||
<configuration> | ||
<addDefaultExcludes>false</addDefaultExcludes> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
</build> | ||
<profiles> | ||
<profile> | ||
<id>generate-asciidoc-templates</id> | ||
<properties> | ||
<pageUrl>http://www.codingthearchitecture.com/2016/05/31/agile_software_architecture_documentation.html</pageUrl> | ||
<templatesDir>${asciidoc.source.docs.directory}</templatesDir> | ||
</properties> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.codehaus.gmavenplus</groupId> | ||
<artifactId>gmavenplus-plugin</artifactId> | ||
<version>1.8.0</version> | ||
<executions> | ||
<execution> | ||
<phase>generate-resources</phase> | ||
<goals> | ||
<goal>execute</goal> | ||
</goals> | ||
<configuration> | ||
<scripts> | ||
<script>${pom.basedir}/src/build/groovy/download_templates.groovy</script> | ||
</scripts> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.codehaus.groovy</groupId> | ||
<artifactId>groovy-all</artifactId> | ||
<!-- any version of Groovy \>= 1.5.0 should work here --> | ||
<version>2.5.8</version> | ||
<scope>runtime</scope> | ||
<type>pom</type> | ||
</dependency> | ||
<!-- I do prefer maven dependencies, as they're downloaded only once | ||
in a place I understand (bad reason, of course) --> | ||
<dependency> | ||
<groupId>org.jsoup</groupId> | ||
<artifactId>jsoup</artifactId> | ||
<version>${version.jsoup}</version> | ||
</dependency> | ||
<dependency> | ||
<!-- this is here for both the script and the project to use --> | ||
<groupId>ch.qos.logback</groupId> | ||
<artifactId>logback-classic</artifactId> | ||
<version>1.2.3</version> | ||
</dependency> | ||
</dependencies> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
<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/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>io.github.Riduidel.aadarchi</groupId> | ||
<artifactId>system</artifactId> | ||
<version>0.1.5</version> | ||
</parent> | ||
<artifactId>archetype</artifactId> | ||
<packaging>maven-archetype</packaging> | ||
|
||
<name>Aadarchi : Archetype</name> | ||
<description>Easily create configuration to document your project with this archetype</description> | ||
|
||
<dependencies> | ||
<!-- This dependency ensures the build order is the one we want (in other words it allows base to build before archetype) --> | ||
<dependency> | ||
<groupId>io.github.Riduidel.aadarchi</groupId> | ||
<artifactId>base</artifactId> | ||
<version>${project.version}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<extensions> | ||
<extension> | ||
<groupId>org.apache.maven.archetype</groupId> | ||
<artifactId>archetype-packaging</artifactId> | ||
<version>3.1.2</version> | ||
</extension> | ||
</extensions> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-archetype-plugin</artifactId> | ||
<version>3.1.2</version> | ||
<configuration> | ||
<properties> | ||
<!-- Used in integration test to generate the pom --> | ||
<aadarchi-used-version>${project.version}</aadarchi-used-version> | ||
</properties> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-resources-plugin</artifactId> | ||
<configuration> | ||
<addDefaultExcludes>false</addDefaultExcludes> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
</build> | ||
<profiles> | ||
<profile> | ||
<id>generate-asciidoc-templates</id> | ||
<properties> | ||
<pageUrl>http://www.codingthearchitecture.com/2016/05/31/agile_software_architecture_documentation.html</pageUrl> | ||
<templatesDir>${asciidoc.source.docs.directory}</templatesDir> | ||
</properties> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.codehaus.gmavenplus</groupId> | ||
<artifactId>gmavenplus-plugin</artifactId> | ||
<version>1.8.0</version> | ||
<executions> | ||
<execution> | ||
<phase>generate-resources</phase> | ||
<goals> | ||
<goal>execute</goal> | ||
</goals> | ||
<configuration> | ||
<scripts> | ||
<script>${pom.basedir}/src/build/groovy/download_templates.groovy</script> | ||
</scripts> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.codehaus.groovy</groupId> | ||
<artifactId>groovy-all</artifactId> | ||
<!-- any version of Groovy \>= 1.5.0 should work here --> | ||
<version>2.5.8</version> | ||
<scope>runtime</scope> | ||
<type>pom</type> | ||
</dependency> | ||
<!-- I do prefer maven dependencies, as they're downloaded only once | ||
in a place I understand (bad reason, of course) --> | ||
<dependency> | ||
<groupId>org.jsoup</groupId> | ||
<artifactId>jsoup</artifactId> | ||
<version>${version.jsoup}</version> | ||
</dependency> | ||
<dependency> | ||
<!-- this is here for both the script and the project to use --> | ||
<groupId>ch.qos.logback</groupId> | ||
<artifactId>logback-classic</artifactId> | ||
<version>1.2.3</version> | ||
</dependency> | ||
</dependencies> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
</project> |
Oops, something went wrong.