Legend:
- Unmodified
- Added
- Removed
-
pom.xml
r12 r14 6 6 <artifactId>runserver</artifactId> 7 7 <packaging>war</packaging> 8 <version>1.4. 0</version>8 <version>1.4.1</version> <!-- must equal ${geniusweb.version} --> 9 9 <name>runserver Maven Webapp</name> 10 10 <url>http://maven.apache.org</url> … … 19 19 <jackson-2-version>2.9.10</jackson-2-version> 20 20 <tomcat.version>8.0.53</tomcat.version> 21 <geniusweb.version>1.4.0</geniusweb.version> 22 21 <geniusweb.version>1.4.1</geniusweb.version> 23 22 </properties> 24 23 … … 79 78 <groupId>tudelft.utilities</groupId> 80 79 <artifactId>repository</artifactId> 81 <version>1. 0.1</version>80 <version>1.1.0</version> 82 81 </dependency> 83 82 … … 154 153 155 154 <build> 156 < finalName>runserver-1.4.0</finalName>155 <!-- Don't specify finalName as the war number would mismatch the pom version --> 157 156 158 157 … … 216 215 </execution> 217 216 </executions> 217 </plugin> 218 219 <!-- Includes version nr in war to enable getImplementationVersion() --> 220 <plugin> 221 <artifactId>maven-war-plugin</artifactId> 222 <version>2.2</version> 223 <configuration> 224 <archive> 225 <manifest> 226 <addDefaultImplementationEntries>true</addDefaultImplementationEntries> 227 </manifest> 228 </archive> 229 </configuration> 218 230 </plugin> 219 231
Note:
See TracChangeset
for help on using the changeset viewer.