fixes to the build system

-Pom get extra plugins and a dependency to get through Launchpad build process.
-Maintainer in control file edited.
-no more build of NavalPlan.
This commit is contained in:
Jeroen Baten 2015-05-15 08:57:56 +02:00
parent f4d65fcb94
commit 5fd7ae4892
2 changed files with 980 additions and 819 deletions

13
debian/control vendored
View file

@ -1,7 +1,7 @@
Source: libreplan Source: libreplan
Section: web Section: web
Priority: optional Priority: optional
Maintainer: Adrian Perez <aperez@igalia.com> Maintainer: Jeroen Baten <jeroen@libreplan.com>
Build-Depends: debhelper (>= 7.0.50), maven2, python-docutils, Build-Depends: debhelper (>= 7.0.50), maven2, python-docutils,
gettext (>= 0.17), default-jdk gettext (>= 0.17), default-jdk
Standards-Version: 3.8.4 Standards-Version: 3.8.4
@ -22,14 +22,3 @@ Description: Web application for project planning, monitoring and control.
the communication with other company tools providing a wide set of web the communication with other company tools providing a wide set of web
services to import and export data. services to import and export data.
Package: navalplan
Architecture: all
Pre-Depends: libreplan (>= 1.2.0-1)
Depends: ${misc:Depends}
Description: Web application for project management (transitional package)
NavalPlan is a planning tool for users based on some concepts: company and
multi-project overview, criteria assignments, tasks tagging, resources
management, resource allocation (specific and generic), company load control,
external integration, etc.
.
This package can be safely deleted after Libreplan is successfully installed.

512
pom.xml
View file

@ -1,13 +1,11 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <?xml version="1.0"?>
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <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">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.libreplan</groupId> <groupId>org.libreplan</groupId>
<artifactId>libreplan</artifactId> <artifactId>libreplan</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>
<version>1.4.0</version> <version>1.4.1</version>
<name>LibrePlan</name> <name>LibrePlan</name>
<!-- <!--
=================================================================== ===================================================================
--> -->
@ -17,7 +15,6 @@
<module>ganttzk</module> <module>ganttzk</module>
<module>libreplan-webapp</module> <module>libreplan-webapp</module>
</modules> </modules>
<!-- <!--
=================================================================== ===================================================================
--> -->
@ -34,13 +31,10 @@
<testDataSource.user>${dataSource.user}</testDataSource.user> <testDataSource.user>${dataSource.user}</testDataSource.user>
<testDataSource.password>${dataSource.password}</testDataSource.password> <testDataSource.password>${dataSource.password}</testDataSource.password>
<databasetable.prefix>public.</databasetable.prefix> <databasetable.prefix>public.</databasetable.prefix>
<default.passwordsControl>true</default.passwordsControl> <default.passwordsControl>true</default.passwordsControl>
<default.exampleUsersDisabled>true</default.exampleUsersDisabled> <default.exampleUsersDisabled>true</default.exampleUsersDisabled>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties> </properties>
<!-- <!--
=================================================================== ===================================================================
--> -->
@ -71,7 +65,6 @@
-Ppostgresql,dev <<goal>> -Ppostgresql,dev <<goal>>
--> -->
<profiles> <profiles>
<!-- Development profile --> <!-- Development profile -->
<profile> <profile>
<id>dev</id> <id>dev</id>
@ -86,13 +79,11 @@
<hibernate.format_sql>true</hibernate.format_sql> <hibernate.format_sql>true</hibernate.format_sql>
<hibernate.use_sql_comments>true</hibernate.use_sql_comments> <hibernate.use_sql_comments>true</hibernate.use_sql_comments>
<hibernate.hbm2ddl.auto>validate</hibernate.hbm2ddl.auto> <hibernate.hbm2ddl.auto>validate</hibernate.hbm2ddl.auto>
<!-- Enable example users (wsreader, wswriter, wssubcontracting, <!-- Enable example users (wsreader, wswriter, wssubcontracting,
manager, hresources, outsourcing and reports) --> manager, hresources, outsourcing and reports) -->
<default.exampleUsersDisabled>false</default.exampleUsersDisabled> <default.exampleUsersDisabled>false</default.exampleUsersDisabled>
</properties> </properties>
</profile> </profile>
<!-- Production profile --> <!-- Production profile -->
<profile> <profile>
<id>prod</id> <id>prod</id>
@ -106,7 +97,6 @@
<hibernate.hbm2ddl.auto>validate</hibernate.hbm2ddl.auto> <hibernate.hbm2ddl.auto>validate</hibernate.hbm2ddl.auto>
</properties> </properties>
</profile> </profile>
<!-- PostgreSQL profile --> <!-- PostgreSQL profile -->
<profile> <profile>
<id>postgresql</id> <id>postgresql</id>
@ -127,7 +117,6 @@
<databasetable.prefix>public.</databasetable.prefix> <databasetable.prefix>public.</databasetable.prefix>
</properties> </properties>
</profile> </profile>
<!-- MySQL profile --> <!-- MySQL profile -->
<profile> <profile>
<id>mysql</id> <id>mysql</id>
@ -142,16 +131,13 @@
<testDataSource.url>${dataSource.url}test</testDataSource.url> <testDataSource.url>${dataSource.url}test</testDataSource.url>
<!-- Hibernate properties --> <!-- Hibernate properties -->
<hibernate.dialect>org.hibernate.dialect.MySQL5InnoDBDialect</hibernate.dialect> <hibernate.dialect>org.hibernate.dialect.MySQL5InnoDBDialect</hibernate.dialect>
<databasetable.prefix></databasetable.prefix> <databasetable.prefix/>
</properties> </properties>
</profile> </profile>
</profiles> </profiles>
<!-- <!--
=================================================================== ===================================================================
--> -->
<repositories> <repositories>
<!-- Getttext commons --> <!-- Getttext commons -->
<repository> <repository>
@ -164,7 +150,6 @@
<url>http://nexus.libreplan.org/content/repositories/thirdparty</url> <url>http://nexus.libreplan.org/content/repositories/thirdparty</url>
</repository> </repository>
</repositories> </repositories>
<pluginRepositories> <pluginRepositories>
<pluginRepository> <pluginRepository>
<id>gettext-commons-site</id> <id>gettext-commons-site</id>
@ -179,10 +164,15 @@
--> -->
</pluginRepositories> </pluginRepositories>
<!-- Dependency management --> <!-- Dependency management -->
<dependencyManagement> <dependencyManagement>
<dependencies> <dependencies>
<!-- vivid dependency -->
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>3.0.5</version>
</dependency>
<!-- Jasper Reports --> <!-- Jasper Reports -->
<dependency> <dependency>
<groupId>net.sf.jasperreports</groupId> <groupId>net.sf.jasperreports</groupId>
@ -218,47 +208,6 @@
<artifactId>gettext-commons</artifactId> <artifactId>gettext-commons</artifactId>
<version>0.9.6</version> <version>0.9.6</version>
</dependency> </dependency>
<!--
Object-to-Relation-Mapping (ORM) integration with Hibernate, JPA, and iBatis.
(depends on spring-core, spring-beans, spring-context, spring-tx)
Define this if you need ORM (org.springframework.orm.*)
-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<version>4.0.3.RELEASE</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>4.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-ehcache</artifactId>
<version>4.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>4.2.0.Final</version>
</dependency>
<dependency>
<groupId>org.jadira.usertype</groupId>
<artifactId>usertype.core</artifactId>
<version>3.2.0.GA</version>
<exclusions>
<exclusion>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- JDBC driver --> <!-- JDBC driver -->
<dependency> <dependency>
<groupId>${jdbcDriver.groupId}</groupId> <groupId>${jdbcDriver.groupId}</groupId>
@ -266,86 +215,51 @@
<version>${jdbcDriver.version}</version> <version>${jdbcDriver.version}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<!-- Hibernate -->
<dependency> <dependency>
<groupId>org.jboss.spec.javax.transaction</groupId> <groupId>org.hibernate</groupId>
<artifactId>jboss-transaction-api_1.1_spec</artifactId> <artifactId>hibernate</artifactId>
<version>1.0.1.Final</version> <version>3.2.7.ga</version>
<scope>compile</scope>
<exclusions> <exclusions>
<exclusion> <exclusion>
<artifactId>xml-apis</artifactId> <groupId>javax.transaction</groupId>
<groupId>xml-apis</groupId> <artifactId>jta</artifactId>
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework</groupId> <groupId>org.apache.geronimo.specs</groupId>
<artifactId>spring-web</artifactId> <artifactId>geronimo-jta_1.0.1B_spec</artifactId>
<version>4.0.3.RELEASE</version> <version>1.1.1</version>
</dependency>
<!--
Various Application Context utilities, including EhCache, JavaMail, Quartz, and
Freemarker integration
We use QuartzJobBean.
-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>4.0.3.RELEASE</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.7.4</version>
</dependency>
<!-- Spring security -->
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
<version>3.2.3.RELEASE</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.security</groupId> <groupId>org.hibernate</groupId>
<artifactId>spring-security-config</artifactId> <artifactId>hibernate-annotations</artifactId>
<version>3.2.3.RELEASE</version> <version>3.3.1.GA</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.security</groupId> <groupId>org.hibernate</groupId>
<artifactId>spring-security-acl</artifactId> <artifactId>hibernate-validator</artifactId>
<version>3.2.3.RELEASE</version> <version>3.0.0.ga</version>
</dependency> </dependency>
<!-- Spring Dependency LDAP -->
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-ldap</artifactId>
<version>3.2.3.RELEASE</version>
</dependency>
<!-- JUnit --> <!-- JUnit -->
<!--
IMPORTANT: Spring TestContext 2.5.x is not compatible
with JUnit 4.5.
-->
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
<version>4.11</version> <version>4.4</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<!-- datasource for testing --> <!-- datasource for testing -->
<dependency> <dependency>
<groupId>com.jolbox</groupId> <groupId>com.jolbox</groupId>
<artifactId>bonecp</artifactId> <artifactId>bonecp</artifactId>
<version>0.8.0.RELEASE</version> <version>0.7.1.RELEASE</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>4.0.3.RELEASE</version>
<scope>test</scope>
</dependency>
<!-- Easy mock --> <!-- Easy mock -->
<dependency> <dependency>
<groupId>org.easymock</groupId> <groupId>org.easymock</groupId>
@ -353,14 +267,269 @@
<version>2.4</version> <version>2.4</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.easymock</groupId> <groupId>org.easymock</groupId>
<artifactId>easymockclassextension</artifactId> <artifactId>easymockclassextension</artifactId>
<version>2.4</version> <version>2.4</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<!-- Spring -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
<version>2.5.6</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>2.5.6</version>
<scope>test</scope>
</dependency>
<!-- QuartzJobBean in spring-context-support.jar -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>2.5.6</version>
</dependency>
<!-- Spring security -->
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
<version>2.0.5.RELEASE</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-support</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-acl</artifactId>
<version>2.0.5.RELEASE</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-dao</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core-tiger</artifactId>
<version>2.0.5.RELEASE</version>
</dependency>
<!-- Spring Dependency LDAP -->
<dependency>
<groupId>org.springframework.ldap</groupId>
<artifactId>spring-ldap-core</artifactId>
<version>1.3.1.RELEASE</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-support</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.ldap</groupId>
<artifactId>spring-ldap-core-tiger</artifactId>
<version>1.3.1.RELEASE</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-support</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.ldap</groupId>
<artifactId>spring-ldap-odm</artifactId>
<version>1.3.1.RELEASE</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-support</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.ldap</groupId>
<artifactId>spring-ldap-ldif-core</artifactId>
<version>1.3.1.RELEASE</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-support</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.ldap</groupId>
<artifactId>spring-ldap-ldif-batch</artifactId>
<version>1.3.1.RELEASE</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-support</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>2.5.6</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- AspectJ -->
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjtools</artifactId>
<version>1.7.1</version>
</dependency>
<!-- AspectJ (required by Spring Security) -->
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.7.1</version>
</dependency>
<dependency> <dependency>
<groupId>net.sf.json-lib</groupId> <groupId>net.sf.json-lib</groupId>
<artifactId>json-lib</artifactId> <artifactId>json-lib</artifactId>
@ -372,13 +541,12 @@
<artifactId>commons-collections</artifactId> <artifactId>commons-collections</artifactId>
<version>3.2</version> <version>3.2</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>net.sf.ezmorph</groupId> <groupId>net.sf.ezmorph</groupId>
<artifactId>ezmorph</artifactId> <artifactId>ezmorph</artifactId>
<version>1.0.6</version> <version>1.0.6</version>
</dependency> </dependency>
<!-- Commons lang --> <!-- Commons lang-->
<dependency> <dependency>
<groupId>commons-lang</groupId> <groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId> <artifactId>commons-lang</artifactId>
@ -394,17 +562,7 @@
<dependency> <dependency>
<groupId>commons-logging</groupId> <groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId> <artifactId>commons-logging</artifactId>
<version>1.1.3</version> <version>1.0.4</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.7</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.7</version>
</dependency> </dependency>
<!-- BeanShell (required by ZK)--> <!-- BeanShell (required by ZK)-->
<dependency> <dependency>
@ -463,7 +621,22 @@
<dependency> <dependency>
<groupId>joda-time</groupId> <groupId>joda-time</groupId>
<artifactId>joda-time</artifactId> <artifactId>joda-time</artifactId>
<version>2.3</version> <version>1.6</version>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time-hibernate</artifactId>
<version>1.1</version>
<exclusions>
<exclusion>
<groupId>cglib</groupId>
<artifactId>cglib-full</artifactId>
</exclusion>
<exclusion>
<groupId>ehcache</groupId>
<artifactId>ehcache</artifactId>
</exclusion>
</exclusions>
</dependency> </dependency>
<!-- LibrePlan ZK Components --> <!-- LibrePlan ZK Components -->
<dependency> <dependency>
@ -482,6 +655,16 @@
<artifactId>dbunit</artifactId> <artifactId>dbunit</artifactId>
<version>2.4.6</version> <version>2.4.6</version>
</dependency> </dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.14</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.5.5</version>
</dependency>
<dependency> <dependency>
<groupId>javax.servlet</groupId> <groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId> <artifactId>servlet-api</artifactId>
@ -566,7 +749,11 @@
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache</artifactId>
<version>1.6.2</version>
</dependency>
<!-- LiquiBase --> <!-- LiquiBase -->
<dependency> <dependency>
<groupId>org.liquibase</groupId> <groupId>org.liquibase</groupId>
@ -601,26 +788,13 @@
<groupId>org.quartz-scheduler</groupId> <groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId> <artifactId>quartz</artifactId>
<version>1.8.0</version> <version>1.8.0</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
</exclusions>
</dependency> </dependency>
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>
<build> <build>
<!-- =============================================================== --> <!-- =============================================================== -->
<!-- Filtering --> <!-- Filtering -->
<resources> <resources>
<!-- <!--
Apply filtering to files matching the following Apply filtering to files matching the following
expressions in src/main/resources. expressions in src/main/resources.
@ -633,7 +807,6 @@
<include>*hibernate.cfg.xml</include> <include>*hibernate.cfg.xml</include>
</includes> </includes>
</resource> </resource>
<!-- <!--
Continue considering resources the files in Continue considering resources the files in
src/main/resources, but without applying filtering. src/main/resources, but without applying filtering.
@ -641,7 +814,6 @@
<resource> <resource>
<directory>src/main/resources</directory> <directory>src/main/resources</directory>
</resource> </resource>
<!-- Filter Jetty configuration --> <!-- Filter Jetty configuration -->
<resource> <resource>
<directory>../src/main/jetty</directory> <directory>../src/main/jetty</directory>
@ -651,7 +823,6 @@
<targetPath>../jetty</targetPath> <targetPath>../jetty</targetPath>
<filtering>true</filtering> <filtering>true</filtering>
</resource> </resource>
<!-- Report bundle directories --> <!-- Report bundle directories -->
<resource> <resource>
<directory>../libreplan-webapp/src/main/jasper/workingArrangementsPerOrder_Bundle/</directory> <directory>../libreplan-webapp/src/main/jasper/workingArrangementsPerOrder_Bundle/</directory>
@ -680,11 +851,8 @@
<resource> <resource>
<directory>../libreplan-webapp/src/main/jasper/projectStatus_Bundle/</directory> <directory>../libreplan-webapp/src/main/jasper/projectStatus_Bundle/</directory>
</resource> </resource>
</resources> </resources>
<testResources> <testResources>
<!-- <!--
Apply filtering to files matching the following Apply filtering to files matching the following
expressions in src/test/resources. expressions in src/test/resources.
@ -698,7 +866,6 @@
<include>**/dbunit*.xml</include> <include>**/dbunit*.xml</include>
</includes> </includes>
</testResource> </testResource>
<!-- <!--
Continue considering resources the files in Continue considering resources the files in
src/test/resources, but without applying filtering. src/test/resources, but without applying filtering.
@ -706,11 +873,8 @@
<testResource> <testResource>
<directory>src/test/resources</directory> <directory>src/test/resources</directory>
</testResource> </testResource>
</testResources> </testResources>
<plugins> <plugins>
<!-- =========================================================== --> <!-- =========================================================== -->
<!-- Gettext configuration --> <!-- Gettext configuration -->
<plugin> <plugin>
@ -721,7 +885,6 @@
<targetBundle>i18n.Messages</targetBundle> <targetBundle>i18n.Messages</targetBundle>
</configuration> </configuration>
</plugin> </plugin>
<!-- =========================================================== --> <!-- =========================================================== -->
<!-- Compiler configuration --> <!-- Compiler configuration -->
<plugin> <plugin>
@ -735,7 +898,6 @@
<encoding>UTF-8</encoding> <encoding>UTF-8</encoding>
</configuration> </configuration>
</plugin> </plugin>
<!-- =========================================================== --> <!-- =========================================================== -->
<!-- Assembly configuration --> <!-- Assembly configuration -->
<plugin> <plugin>
@ -746,7 +908,6 @@
</descriptors> </descriptors>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId> <artifactId>maven-war-plugin</artifactId>
@ -764,20 +925,17 @@
</webResources> </webResources>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.17</version> <version>2.10</version>
<configuration> <configuration>
<runOrder>alphabetical</runOrder> <runOrder>alphabetical</runOrder>
</configuration> </configuration>
</plugin> </plugin>
<!-- =========================================================== --> <!-- =========================================================== -->
<!-- Jetty configuration --> <!-- Jetty configuration -->
<plugin> <plugin>
<groupId>org.mortbay.jetty</groupId> <groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId> <artifactId>maven-jetty-plugin</artifactId>
<version>6.1.18</version> <version>6.1.18</version>
@ -803,7 +961,6 @@
</connectors> </connectors>
--> -->
</configuration> </configuration>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>${jdbcDriver.groupId}</groupId> <groupId>${jdbcDriver.groupId}</groupId>
@ -834,7 +991,6 @@
</dependency> </dependency>
</dependencies> </dependencies>
</plugin> </plugin>
<!-- =========================================================== --> <!-- =========================================================== -->
<!-- Tomcat configuration --> <!-- Tomcat configuration -->
<plugin> <plugin>
@ -846,7 +1002,6 @@
<server>${tomcatServer}</server> <server>${tomcatServer}</server>
</configuration> </configuration>
</plugin> </plugin>
<!-- =========================================================== --> <!-- =========================================================== -->
<!-- Cobertura configuration --> <!-- Cobertura configuration -->
<plugin> <plugin>
@ -861,7 +1016,6 @@
<maxmem>512M</maxmem> <maxmem>512M</maxmem>
</configuration> </configuration>
</plugin> </plugin>
<!-- =========================================================== --> <!-- =========================================================== -->
<!-- LiquiBase plugin --> <!-- LiquiBase plugin -->
<plugin> <plugin>
@ -869,8 +1023,26 @@
<artifactId>liquibase-maven-plugin</artifactId> <artifactId>liquibase-maven-plugin</artifactId>
<version>2.0.5</version> <version>2.0.5</version>
</plugin> </plugin>
<plugin>
<!-- precise dependency -->
<artifactId>maven-site-plugin</artifactId>
<version>2.1</version>
</plugin>
<plugin>
<!-- vivid dependency -->
<artifactId>maven-assembly-plugin</artifactId>
<version>2.1</version>
</plugin>
<plugin>
<!-- vivid dependency -->
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<!-- vivid dependency -->
<artifactId>maven-install-plugin</artifactId>
<version>2.4</version>
</plugin>
</plugins> </plugins>
</build> </build>
</project> </project>