-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change module order (sometimes not built in correct order)
- Loading branch information
Showing
2 changed files
with
135 additions
and
135 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 |
---|---|---|
|
@@ -2,34 +2,34 @@ | |
<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> | ||
<groupId>io.github.belgif.restguide</groupId> | ||
<artifactId>restguide-parent</artifactId> | ||
<version>0.1.0-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
<name>REST Styleguide</name> | ||
<description>REST style guide for Belgian government institutions</description> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>io.github.belgif.restguide</groupId> | ||
<artifactId>restguide-parent</artifactId> | ||
<version>0.1.0-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
<name>REST Styleguide - parent project</name> | ||
<description>REST style guide for Belgian government institutions</description> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<asciidoctorj.version>2.5.11</asciidoctorj.version> | ||
<maven.compiler.source>17</maven.compiler.source> | ||
<maven.compiler.target>17</maven.compiler.target> | ||
</properties> | ||
<developers> | ||
<developer> | ||
<name>REST Guide working group</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
</developers> | ||
|
||
<modules> | ||
<module>guide</module> | ||
<module>asciidoc-extensions</module> | ||
</modules> | ||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<asciidoctorj.version>2.5.11</asciidoctorj.version> | ||
<maven.compiler.source>17</maven.compiler.source> | ||
<maven.compiler.target>17</maven.compiler.target> | ||
</properties> | ||
<developers> | ||
<developer> | ||
<name>REST Guide working group</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
</developers> | ||
|
||
<build> | ||
<defaultGoal>package</defaultGoal> | ||
</build> | ||
<modules> | ||
<module>asciidoc-extensions</module> | ||
<module>guide</module> | ||
</modules> | ||
|
||
<build> | ||
<defaultGoal>package</defaultGoal> | ||
</build> | ||
|
||
</project> |