...
Code Block |
---|
|
<parent>
<artifactId>sakai-standard-tool</artifactId>
<groupId>org.sakaiproject.purepoms</groupId>
<version>2.7.0-build02-SNAPSHOT</version>
<!--
<artifactId>master</artifactId>
<groupId>org.sakaiproject</groupId>
<version>2.7.0-SNAPSHOT</version>
-->
</parent>
|
Profile cleanup
Remove all "K1" and "pre-K1" build profiles as they are not required for Sitestats 2.1.
base pom <dependencyManagement> cleanup
...
Code Block |
---|
|
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</dependency>
<!-- Test -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache</artifactId>
<scope>test</scope>
</dependency>
|
Remove versions (K1 inheritance)
sitestats-impl pom
Code Block |
---|
|
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<!-- <version>${sakai.servletapi.version}</version> -->
<scope>test</scope>
</dependency>
|
sitestats-impl pom
Explicit versions defined (ex-master inheritance)
Code Block |
---|
|
<dependency>
<groupId>quartz</groupId>
<artifactId>quartz</artifactId>
<version>1.5.2</version>
<scope>provided</scope>
</dependency>
|