|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<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 "> |
| 2 | +<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"> |
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 |
|
5 | 5 | <parent> |
|
8 | 8 | <version>3.27.3</version> |
9 | 9 | </parent> |
10 | 10 |
|
11 | | - <artifactId>assertj-assertions-generator</artifactId> |
| 11 | + <artifactId>assertj-generator-build</artifactId> |
12 | 12 | <version>3.0.0-M5-SNAPSHOT</version> |
| 13 | + <packaging>pom</packaging> |
13 | 14 |
|
14 | | - <name>AssertJ Assertions Generator</name> |
| 15 | + <name>AssertJ Generator Build</name> |
| 16 | + |
| 17 | + <modules> |
| 18 | + <module>assertj-assertions-generator</module> |
| 19 | + <module>assertj-generator</module> |
| 20 | + </modules> |
15 | 21 |
|
16 | 22 | <scm> |
17 | | - <developerConnection>scm:git:https://github.com/assertj/assertj-assertions-generator.git</developerConnection> |
18 | | - <connection>scm:git:https://github.com/assertj/assertj-assertions-generator.git</connection> |
19 | | - <url>https://github.com/assertj/assertj-assertions-generator</url> |
| 23 | + <developerConnection>scm:git:https://github.com/assertj/assertj-generator.git</developerConnection> |
| 24 | + <connection>scm:git:https://github.com/assertj/assertj-generator.git</connection> |
| 25 | + <url>https://github.com/assertj/assertj-generator</url> |
20 | 26 | <tag>HEAD</tag> |
21 | 27 | </scm> |
22 | 28 | <issueManagement> |
23 | 29 | <system>GitHub</system> |
24 | | - <url>https://github.com/assertj/assertj-assertions-generator/issues</url> |
| 30 | + <url>https://github.com/assertj/assertj-generator/issues</url> |
25 | 31 | </issueManagement> |
26 | 32 |
|
27 | | - <properties> |
28 | | - <maven.compiler.release>17</maven.compiler.release> |
29 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
30 | | - <!-- Needed to properly bring in the Maven dependencies, see http://maven.apache.org/surefire/maven-surefire-plugin/examples/class-loading.html --> |
31 | | - <surefire.useSystemClassLoader>false</surefire.useSystemClassLoader> |
32 | | - <!-- Dependency versions overriding --> |
33 | | - <junit-jupiter.version>5.11.1</junit-jupiter.version> |
34 | | - </properties> |
35 | | - |
36 | | - <dependencyManagement> |
37 | | - <dependencies> |
38 | | - <dependency> |
39 | | - <groupId>com.google.guava</groupId> |
40 | | - <artifactId>guava</artifactId> |
41 | | - <version>33.4.8-jre</version> |
42 | | - </dependency> |
43 | | - </dependencies> |
44 | | - </dependencyManagement> |
45 | | - <dependencies> |
46 | | - <!-- Compile --> |
47 | | - <dependency> |
48 | | - <groupId>org.apache.commons</groupId> |
49 | | - <artifactId>commons-lang3</artifactId> |
50 | | - <version>3.17.0</version> |
51 | | - </dependency> |
52 | | - <dependency> |
53 | | - <groupId>commons-cli</groupId> |
54 | | - <artifactId>commons-cli</artifactId> |
55 | | - <version>1.9.0</version> |
56 | | - </dependency> |
57 | | - <dependency> |
58 | | - <groupId>com.google.guava</groupId> |
59 | | - <artifactId>guava</artifactId> |
60 | | - </dependency> |
61 | | - <dependency> |
62 | | - <groupId>ch.qos.logback</groupId> |
63 | | - <artifactId>logback-classic</artifactId> |
64 | | - <version>1.5.18</version> |
65 | | - </dependency> |
66 | | - <!-- Test --> |
67 | | - <dependency> |
68 | | - <groupId>com.google.testing.compile</groupId> |
69 | | - <artifactId>compile-testing</artifactId> |
70 | | - <version>0.21.0</version> |
71 | | - <scope>test</scope> |
72 | | - <exclusions> |
73 | | - <exclusion> |
74 | | - <artifactId>junit</artifactId> |
75 | | - <groupId>junit</groupId> |
76 | | - </exclusion> |
77 | | - </exclusions> |
78 | | - </dependency> |
79 | | - <dependency> |
80 | | - <groupId>commons-io</groupId> |
81 | | - <artifactId>commons-io</artifactId> |
82 | | - <version>2.19.0</version> |
83 | | - <scope>test</scope> |
84 | | - </dependency> |
85 | | - <dependency> |
86 | | - <groupId>org.assertj</groupId> |
87 | | - <artifactId>assertj-core</artifactId> |
88 | | - <version>3.27.3</version> |
89 | | - <scope>test</scope> |
90 | | - </dependency> |
91 | | - <dependency> |
92 | | - <groupId>org.junit.jupiter</groupId> |
93 | | - <artifactId>junit-jupiter</artifactId> |
94 | | - <scope>test</scope> |
95 | | - </dependency> |
96 | | - </dependencies> |
97 | | - |
98 | 33 | <build> |
99 | | - <finalName>assertion-generator</finalName> |
100 | 34 | <plugins> |
101 | | - <plugin> |
102 | | - <groupId>org.apache.maven.plugins</groupId> |
103 | | - <artifactId>maven-assembly-plugin</artifactId> |
104 | | - <version>3.7.1</version> |
105 | | - <executions> |
106 | | - <execution> |
107 | | - <id>unix-assembly</id> |
108 | | - <phase>package</phase> |
109 | | - <goals> |
110 | | - <goal>single</goal> |
111 | | - </goals> |
112 | | - <configuration> |
113 | | - <descriptors> |
114 | | - <descriptor>src/main/resources/assemblies/unix-assembly.xml</descriptor> |
115 | | - </descriptors> |
116 | | - </configuration> |
117 | | - </execution> |
118 | | - <execution> |
119 | | - <!-- override make-assembly defined in parent pom to make windows assembly --> |
120 | | - <id>make-assembly</id> |
121 | | - <phase>package</phase> |
122 | | - <goals> |
123 | | - <goal>single</goal> |
124 | | - </goals> |
125 | | - <configuration> |
126 | | - <descriptors> |
127 | | - <descriptor>src/main/resources/assemblies/windows-assembly.xml</descriptor> |
128 | | - </descriptors> |
129 | | - </configuration> |
130 | | - </execution> |
131 | | - </executions> |
132 | | - </plugin> |
133 | | - <plugin> |
134 | | - <groupId>org.apache.maven.plugins</groupId> |
135 | | - <artifactId>maven-jar-plugin</artifactId> |
136 | | - <configuration> |
137 | | - <archive> |
138 | | - <manifest> |
139 | | - <!-- Classpath is added to the manifest of the created jar file. --> |
140 | | - <addClasspath>true</addClasspath> |
141 | | - <!-- classpath prefix - used to specify that all needed libraries are found under lib/ directory --> |
142 | | - <classpathPrefix>lib/</classpathPrefix> |
143 | | - <mainClass>org.assertj.assertions.generator.cli.AssertionGeneratorLauncher</mainClass> |
144 | | - </manifest> |
145 | | - </archive> |
146 | | - </configuration> |
147 | | - </plugin> |
148 | | - <plugin> |
149 | | - <groupId>org.codehaus.mojo</groupId> |
150 | | - <artifactId>flatten-maven-plugin</artifactId> |
151 | | - <executions> |
152 | | - <execution> |
153 | | - <id>flatten</id> |
154 | | - <phase>process-resources</phase> |
155 | | - <goals> |
156 | | - <goal>flatten</goal> |
157 | | - </goals> |
158 | | - <configuration> |
159 | | - <flattenMode>ossrh</flattenMode> |
160 | | - <pomElements> |
161 | | - <build>remove</build> |
162 | | - </pomElements> |
163 | | - </configuration> |
164 | | - </execution> |
165 | | - <execution> |
166 | | - <id>flatten-clean</id> |
167 | | - <phase>clean</phase> |
168 | | - <goals> |
169 | | - <goal>clean</goal> |
170 | | - </goals> |
171 | | - </execution> |
172 | | - </executions> |
173 | | - </plugin> |
174 | | - <plugin> |
175 | | - <groupId>org.jacoco</groupId> |
176 | | - <artifactId>jacoco-maven-plugin</artifactId> |
177 | | - <configuration> |
178 | | - <excludes> |
179 | | - <exclude>**/AssertionGeneratorLauncher.*</exclude> |
180 | | - </excludes> |
181 | | - <outputDirectory>target/site/jacoco</outputDirectory> |
182 | | - </configuration> |
183 | | - </plugin> |
184 | 35 | <plugin> |
185 | 36 | <groupId>org.sonatype.plugins</groupId> |
186 | 37 | <artifactId>nexus-staging-maven-plugin</artifactId> |
|
0 commit comments