Legend:
- Unmodified
- Added
- Removed
-
pom.xml
r11 r12 6 6 <artifactId>profilesserver</artifactId> 7 7 <packaging>war</packaging> 8 <version>1. 3.1</version>8 <version>1.4.0</version> 9 9 <name>profileserver Maven Webapp</name> 10 10 <url>http://maven.apache.org</url> … … 18 18 <jackson-2-version>2.9.10</jackson-2-version> 19 19 <tomcat.version>8.5.20</tomcat.version> 20 <geniusweb.version>1.4.0</geniusweb.version> 20 21 </properties> 21 22 … … 50 51 <groupId>geniusweb</groupId> 51 52 <artifactId>profile</artifactId> 52 <version> 1.3.1</version>53 <version>${geniusweb.version}</version> 53 54 </dependency> 54 55 … … 56 57 <groupId>geniusweb</groupId> 57 58 <artifactId>bidspace</artifactId> 58 <version> 1.3.1</version>59 <version>${geniusweb.version}</version> 59 60 </dependency> 60 61 … … 213 214 214 215 <build> 215 <finalName>profilesserver</finalName> 216 <finalName>profilesserver-1.4.0</finalName> 217 216 218 217 219 … … 247 249 </executions> 248 250 </plugin> 251 252 <!-- This makes but does not install the jar <plugin> <groupId>org.apache.maven.plugins</groupId> 253 <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>make-a-jar</id> 254 <phase>compile</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> 255 </plugin> --> 256 <!-- This does nothign <plugin> <artifactId>maven-war-plugin</artifactId> 257 <configuration> <archiveClasses>true</archiveClasses> </configuration> </plugin> --> 258 259 <plugin> 260 <artifactId>maven-war-plugin</artifactId> 261 <version>3.2.3</version> 262 <configuration> 263 <attachClasses>true</attachClasses> 264 </configuration> 265 </plugin> 266 249 267 <plugin> 250 268 <groupId>org.apache.maven.plugins</groupId> … … 327 345 </executions> 328 346 </plugin> 329 330 <plugin> 331 <groupId>org.apache.maven.plugins</groupId> 332 <artifactId>maven-assembly-plugin</artifactId> 333 <version>2.4.1</version> 334 <configuration> 335 <!-- get all project dependencies --> 336 <descriptorRefs> 337 <descriptorRef>jar-with-dependencies</descriptorRef> 338 </descriptorRefs> 339 <archive> 340 <manifest> 341 <addDefaultImplementationEntries>true</addDefaultImplementationEntries> 342 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> 343 </manifest> 344 </archive> 345 </configuration> 346 <executions> 347 <execution> 348 <id>make-assembly</id> 349 <!-- bind to the packaging phase --> 350 <phase>package</phase> 351 <goals> 352 <goal>single</goal> 353 </goals> 354 </execution> 355 </executions> 356 </plugin> 357 347 <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> 348 <version>2.4.1</version> <configuration> get all project dependencies <descriptorRefs> 349 <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <archive> 350 <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> 351 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> 352 </archive> </configuration> <executions> <execution> <id>make-assembly</id> 353 bind to the packaging phase <phase>package</phase> <goals> <goal>single</goal> 354 </goals> </execution> </executions> </plugin> --> 358 355 359 356 <!-- Special plugin for the tomcat embedded stuff? --> … … 410 407 </plugin> 411 408 </plugins> 409 412 410 </pluginManagement> 413 411
Note:
See TracChangeset
for help on using the changeset viewer.