1,12 → 1,11 |
<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"> |
<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> |
<groupId>org.kawai</groupId> |
<artifactId>kawai</artifactId> |
<packaging>war</packaging> |
<version>1.0.2-SNAPSHOT</version> |
<version>1.0.0-SNAPSHOT</version> |
<name>The Kawai CMS and Wiki</name> |
<url>http://www.kawaiwiki.org</url> |
<url>http://kawai.mentaframework.org</url> |
|
<scm> |
<connection>scm:svn:svn://soliveirajr.com/kawai/trunk</connection> |
56,31 → 55,21 |
</dependency> |
|
<dependency> |
<groupId>com.jolbox</groupId> |
<artifactId>bonecp</artifactId> |
<version>0.7.1.RELEASE</version> |
<groupId>c3p0</groupId> |
<artifactId>c3p0</artifactId> |
<version>0.9.1.2</version> |
</dependency> |
|
<!-- dependency> <groupId>c3p0</groupId> <artifactId>c3p0</artifactId> |
<version>0.9.1.2</version> </dependency --> |
|
<dependency> |
<groupId>mysql</groupId> |
<artifactId>mysql-connector-java</artifactId> |
<version>5.1.13</version> |
</dependency> |
|
<!-- For BoneCP --> |
<dependency> |
<groupId>org.slf4j</groupId> |
<artifactId>slf4j-log4j12</artifactId> |
<version>1.5.10</version> |
</dependency> |
|
<dependency> |
<groupId>me.soliveirajr</groupId> |
<artifactId>mentawai</artifactId> |
<version>2.5.4-SNAPSHOT</version> |
<version>2.2.3-SNAPSHOT</version> |
</dependency> |
|
</dependencies> |
88,19 → 77,6 |
<build> |
<plugins> |
|
<plugin> |
<groupId>org.apache.maven.plugins</groupId> |
<artifactId>maven-surefire-plugin</artifactId> |
<version>2.11</version> |
<configuration> |
<includes> |
<include>AllTests.java</include> |
</includes> |
<excludes> |
<exclude>**/*Test.java</exclude> |
</excludes> |
</configuration> |
</plugin> |
|
<plugin> |
<groupId>org.mortbay.jetty</groupId> |
127,7 → 103,6 |
<configuration> |
<source>1.6</source> |
<target>1.6</target> |
<encoding>UTF-8</encoding> |
</configuration> |
</plugin> |
<plugin> |
145,7 → 120,7 |
</configuration> |
</plugin> |
</plugins> |
<finalName>kawai</finalName> |
<finalName>menta</finalName> |
<pluginManagement> |
<plugins> |
<plugin> |
185,6 → 160,16 |
<plugin> |
<artifactId>maven-clean-plugin</artifactId> |
<version>2.2</version> |
<configuration> |
<filesets> |
<fileset> |
<directory>.</directory> |
<includes> |
</includes> |
<followSymlinks>false</followSymlinks> |
</fileset> |
</filesets> |
</configuration> |
</plugin> |
|
|
194,7 → 179,6 |
<artifactId>maven-compiler-plugin</artifactId> |
<version>2.0.2</version> |
<configuration> |
<encoding>UTF-8</encoding> |
<!-- javaee6 contains upgrades of APIs contained within the JDK itself. |
As such these need to be placed on the bootclasspath, rather than classpath |
of the compiler. If you don't make use of these new updated API, you can |