Skip to content

Commit ee01622

Browse files
committed
minor pom.xml changes
1 parent 821081e commit ee01622

File tree

2 files changed

+36
-24
lines changed

2 files changed

+36
-24
lines changed

patch-gen/pom.xml

Lines changed: 12 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,25 @@
88
<groupId>org.jboss.as</groupId>
99
<artifactId>patch-gen-parent</artifactId>
1010
<version>2.0.1.Alpha2-SNAPSHOT</version>
11-
<relativePath>../pom.xml</relativePath>
1211
</parent>
1312

1413
<artifactId>patch-gen</artifactId>
14+
<packaging>jar</packaging>
1515

1616
<name>JBoss patch-gen tool</name>
1717
<description>The patch-gen Tool</description>
1818

19-
<properties>
20-
</properties>
19+
<dependencies>
20+
<dependency>
21+
<groupId>org.wildfly.core</groupId>
22+
<artifactId>wildfly-patching</artifactId>
23+
</dependency>
24+
<dependency>
25+
<groupId>junit</groupId>
26+
<artifactId>junit</artifactId>
27+
<scope>test</scope>
28+
</dependency>
29+
</dependencies>
2130

2231
<build>
2332
<plugins>
@@ -70,18 +79,4 @@
7079
</plugin>
7180
</plugins>
7281
</build>
73-
74-
<dependencies>
75-
<dependency>
76-
<groupId>org.wildfly.core</groupId>
77-
<artifactId>wildfly-patching</artifactId>
78-
<version>${version.org.wildfly-core}</version>
79-
</dependency>
80-
<dependency>
81-
<groupId>junit</groupId>
82-
<artifactId>junit</artifactId>
83-
<version>${version.junit}</version>
84-
<scope>test</scope>
85-
</dependency>
86-
</dependencies>
8782
</project>

pom.xml

Lines changed: 24 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,21 @@
77
<parent>
88
<groupId>org.jboss</groupId>
99
<artifactId>jboss-parent</artifactId>
10-
<version>10</version>
10+
<version>20</version>
1111
</parent>
1212

1313
<groupId>org.jboss.as</groupId>
1414
<artifactId>patch-gen-parent</artifactId>
1515
<version>2.0.1.Alpha2-SNAPSHOT</version>
16+
<packaging>pom</packaging>
1617

1718
<name>JBoss patch-gen Build Aggregator</name>
1819
<description>The patch-gen tool</description>
19-
<packaging>pom</packaging>
20+
21+
<modules>
22+
<module>patch-gen</module>
23+
<module>patch-gen-maven-plugin</module>
24+
</modules>
2025

2126
<properties>
2227
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -56,6 +61,23 @@
5661
<artifactId>patch-gen</artifactId>
5762
<version>${project.version}</version>
5863
</dependency>
64+
<dependency>
65+
<groupId>${project.groupId}</groupId>
66+
<artifactId>patch-gen-maven-plugin</artifactId>
67+
<version>${project.version}</version>
68+
</dependency>
69+
70+
<dependency>
71+
<groupId>org.wildfly.core</groupId>
72+
<artifactId>wildfly-patching</artifactId>
73+
<version>${version.org.wildfly-core}</version>
74+
</dependency>
75+
<dependency>
76+
<groupId>junit</groupId>
77+
<artifactId>junit</artifactId>
78+
<scope>test</scope>
79+
<version>${version.junit}</version>
80+
</dependency>
5981
</dependencies>
6082
</dependencyManagement>
6183

@@ -108,11 +130,6 @@
108130
</pluginManagement>
109131
</build>
110132

111-
<modules>
112-
<module>patch-gen</module>
113-
<module>patch-gen-maven-plugin</module>
114-
</modules>
115-
116133
<repositories>
117134
<repository>
118135
<id>jboss-public-repository-group</id>

0 commit comments

Comments
 (0)