Version bumped by QuickBuild.

This commit is contained in:
Sea App 2012-04-22 14:02:21 +00:00
parent f1705d4558
commit 9d8124fe6a
7 changed files with 500 additions and 524 deletions

View File

@ -1,43 +1,41 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <?xml version="1.0" encoding="UTF-8"?>
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.pmease</groupId>
<artifactId>parent.general</artifactId>
<version>1.0.0</version>
</parent>
<artifactId>archetype.product</artifactId>
<name>PMEase Product Archetype</name>
<build>
<plugins>
<plugin>
<artifactId>maven-archetype-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.pmease</groupId>
<artifactId>plugin.maven</artifactId>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>pmeaseRepo</id>
<name>PMEase Repository</name>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</snapshots>
<url>http://artifact.pmease.com/</url>
</repository>
</repositories>
<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>
<parent>
<groupId>com.pmease</groupId>
<artifactId>parent.general</artifactId>
<version>1.0.0</version>
</parent>
<artifactId>archetype.product</artifactId>
<name>PMEase Product Archetype</name>
<build>
<plugins>
<plugin>
<artifactId>maven-archetype-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.pmease</groupId>
<artifactId>plugin.maven</artifactId>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>pmeaseRepo</id>
<name>PMEase Repository</name>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</snapshots>
<url>http://artifact.pmease.com/</url>
</repository>
</repositories>
<version>1.0.2</version>
</project> </project>

View File

@ -1,66 +1,63 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <?xml version="1.0" encoding="UTF-8"?>
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>parent.general</artifactId>
<groupId>com.pmease</groupId>
<version>1.0.0</version>
</parent>
<artifactId>commons.bootstrap</artifactId>
<build> <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/xsd/maven-4.0.0.xsd">
<plugins> <modelVersion>4.0.0</modelVersion>
<plugin> <parent>
<groupId>com.pmease</groupId> <artifactId>parent.general</artifactId>
<artifactId>plugin.maven</artifactId> <groupId>com.pmease</groupId>
</plugin> <version>1.0.0</version>
<plugin> </parent>
<artifactId>maven-source-plugin</artifactId> <artifactId>commons.bootstrap</artifactId>
</plugin> <build>
<plugin> <plugins>
<artifactId>maven-javadoc-plugin</artifactId> <plugin>
</plugin> <groupId>com.pmease</groupId>
</plugins> <artifactId>plugin.maven</artifactId>
</build> </plugin>
<plugin>
<properties> <artifactId>maven-source-plugin</artifactId>
<bootstrap>true</bootstrap> </plugin>
</properties> <plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<dependencies> </plugin>
<dependency> </plugins>
<groupId>org.slf4j</groupId> </build>
<artifactId>slf4j-api</artifactId> <properties>
<version>1.6.4</version> <bootstrap>true</bootstrap>
</dependency> </properties>
<dependency> <dependencies>
<groupId>ch.qos.logback</groupId> <dependency>
<artifactId>logback-core</artifactId> <groupId>org.slf4j</groupId>
<version>1.0.1</version> <artifactId>slf4j-api</artifactId>
</dependency> <version>1.6.4</version>
<dependency> </dependency>
<groupId>ch.qos.logback</groupId> <dependency>
<artifactId>logback-classic</artifactId> <groupId>ch.qos.logback</groupId>
<version>1.0.1</version> <artifactId>logback-core</artifactId>
</dependency> <version>1.0.1</version>
</dependencies> </dependency>
<dependency>
<repositories> <groupId>ch.qos.logback</groupId>
<repository> <artifactId>logback-classic</artifactId>
<id>pmeaseRepo</id> <version>1.0.1</version>
<name>PMEase Repository</name> </dependency>
<releases> </dependencies>
<enabled>true</enabled> <repositories>
<updatePolicy>never</updatePolicy> <repository>
<checksumPolicy>fail</checksumPolicy> <id>pmeaseRepo</id>
</releases> <name>PMEase Repository</name>
<snapshots> <releases>
<enabled>true</enabled> <enabled>true</enabled>
<updatePolicy>always</updatePolicy> <updatePolicy>never</updatePolicy>
<checksumPolicy>fail</checksumPolicy> <checksumPolicy>fail</checksumPolicy>
</snapshots> </releases>
<url>http://artifact.pmease.com/</url> <snapshots>
</repository> <enabled>true</enabled>
</repositories> <updatePolicy>always</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</project> </snapshots>
<url>http://artifact.pmease.com/</url>
</repository>
</repositories>
<version>1.0.2</version>
</project>

View File

@ -1,108 +1,103 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <?xml version="1.0" encoding="UTF-8"?>
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>parent.plugin</artifactId>
<groupId>com.pmease</groupId>
<version>1.0.0</version>
</parent>
<artifactId>commons.hibernate</artifactId> <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/xsd/maven-4.0.0.xsd">
<version>1.0.1</version> <modelVersion>4.0.0</modelVersion>
<parent>
<build> <artifactId>parent.plugin</artifactId>
<plugins> <groupId>com.pmease</groupId>
<plugin> <version>1.0.0</version>
<groupId>com.pmease</groupId> </parent>
<artifactId>plugin.maven</artifactId> <artifactId>commons.hibernate</artifactId>
</plugin> <version>1.0.2</version>
<plugin> <build>
<artifactId>maven-source-plugin</artifactId> <plugins>
</plugin> <plugin>
<plugin> <groupId>com.pmease</groupId>
<artifactId>maven-javadoc-plugin</artifactId> <artifactId>plugin.maven</artifactId>
</plugin> </plugin>
</plugins> <plugin>
</build> <artifactId>maven-source-plugin</artifactId>
</plugin>
<dependencies> <plugin>
<dependency> <artifactId>maven-javadoc-plugin</artifactId>
<groupId>com.pmease</groupId> </plugin>
<artifactId>commons.jetty</artifactId> </plugins>
<version>1.0.1</version> </build>
</dependency> <dependencies>
<dependency> <dependency>
<groupId>org.hibernate.javax.persistence</groupId> <groupId>com.pmease</groupId>
<artifactId>hibernate-jpa-2.0-api</artifactId> <artifactId>commons.jetty</artifactId>
<version>1.0.1.Final</version> <version>1.0.2</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.hibernate</groupId> <groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-core</artifactId> <artifactId>hibernate-jpa-2.0-api</artifactId>
<version>3.6.10.Final</version> <version>1.0.1.Final</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId> <artifactId>hibernate-core</artifactId>
<version>4.2.0.Final</version> <version>3.6.10.Final</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-ehcache</artifactId> <artifactId>hibernate-validator</artifactId>
<version>3.6.10.Final</version> <version>4.2.0.Final</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.hsqldb</groupId> <groupId>org.hibernate</groupId>
<artifactId>hsqldb</artifactId> <artifactId>hibernate-ehcache</artifactId>
<version>2.2.8</version> <version>3.6.10.Final</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.jolbox</groupId> <groupId>org.hsqldb</groupId>
<artifactId>bonecp</artifactId> <artifactId>hsqldb</artifactId>
<version>0.7.1.RELEASE</version> <version>2.2.8</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.jolbox</groupId> <groupId>com.jolbox</groupId>
<artifactId>bonecp-provider</artifactId> <artifactId>bonecp</artifactId>
<version>0.7.1.RELEASE</version> <version>0.7.1.RELEASE</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>mysql</groupId> <groupId>com.jolbox</groupId>
<artifactId>mysql-connector-java</artifactId> <artifactId>bonecp-provider</artifactId>
<version>5.1.19</version> <version>0.7.1.RELEASE</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>net.sourceforge.jtds</groupId> <groupId>mysql</groupId>
<artifactId>jtds</artifactId> <artifactId>mysql-connector-java</artifactId>
<version>1.2.4</version> <version>5.1.19</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.javassist</groupId> <groupId>net.sourceforge.jtds</groupId>
<artifactId>javassist</artifactId> <artifactId>jtds</artifactId>
<version>3.16.1-GA</version> <version>1.2.4</version>
</dependency> </dependency>
</dependencies> <dependency>
<groupId>org.javassist</groupId>
<repositories> <artifactId>javassist</artifactId>
<repository> <version>3.16.1-GA</version>
<id>pmeaseRepo</id> </dependency>
<name>PMEase Repository</name> </dependencies>
<releases> <repositories>
<enabled>true</enabled> <repository>
<updatePolicy>never</updatePolicy> <id>pmeaseRepo</id>
<checksumPolicy>fail</checksumPolicy> <name>PMEase Repository</name>
</releases> <releases>
<snapshots> <enabled>true</enabled>
<enabled>true</enabled> <updatePolicy>never</updatePolicy>
<updatePolicy>always</updatePolicy> <checksumPolicy>fail</checksumPolicy>
<checksumPolicy>fail</checksumPolicy> </releases>
</snapshots> <snapshots>
<url>http://artifact.pmease.com/</url> <enabled>true</enabled>
</repository> <updatePolicy>always</updatePolicy>
</repositories> <checksumPolicy>fail</checksumPolicy>
</snapshots>
<properties> <url>http://artifact.pmease.com/</url>
<moduleClass>com.pmease.commons.hibernate.HibernateModule</moduleClass> </repository>
</properties> </repositories>
<properties>
</project> <moduleClass>com.pmease.commons.hibernate.HibernateModule</moduleClass>
</properties>
</project>

View File

@ -1,77 +1,73 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <?xml version="1.0" encoding="UTF-8"?>
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>parent.plugin</artifactId>
<groupId>com.pmease</groupId>
<version>1.0.0</version>
</parent>
<version>1.0.1</version>
<artifactId>commons.jetty</artifactId>
<build>
<plugins>
<plugin>
<groupId>com.pmease</groupId>
<artifactId>plugin.maven</artifactId>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.pmease</groupId>
<artifactId>commons.loader</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>8.1.0.v20120127</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlets</artifactId>
<version>8.1.0.v20120127</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>8.1.0.v20120127</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>pmeaseRepo</id>
<name>PMEase Repository</name>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</snapshots>
<url>http://artifact.pmease.com/</url>
</repository>
</repositories>
<properties> <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/xsd/maven-4.0.0.xsd">
<moduleClass>com.pmease.commons.jetty.JettyModule</moduleClass> <modelVersion>4.0.0</modelVersion>
</properties> <parent>
</project> <artifactId>parent.plugin</artifactId>
<groupId>com.pmease</groupId>
<version>1.0.0</version>
</parent>
<version>1.0.2</version>
<artifactId>commons.jetty</artifactId>
<build>
<plugins>
<plugin>
<groupId>com.pmease</groupId>
<artifactId>plugin.maven</artifactId>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.pmease</groupId>
<artifactId>commons.loader</artifactId>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>8.1.0.v20120127</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlets</artifactId>
<version>8.1.0.v20120127</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>8.1.0.v20120127</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>pmeaseRepo</id>
<name>PMEase Repository</name>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</snapshots>
<url>http://artifact.pmease.com/</url>
</repository>
</repositories>
<properties>
<moduleClass>com.pmease.commons.jetty.JettyModule</moduleClass>
</properties>
</project>

View File

@ -1,73 +1,70 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <?xml version="1.0" encoding="UTF-8"?>
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>commons.loader</artifactId>
<parent> <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/xsd/maven-4.0.0.xsd">
<groupId>com.pmease</groupId> <modelVersion>4.0.0</modelVersion>
<artifactId>parent.general</artifactId> <artifactId>commons.loader</artifactId>
<version>1.0.0</version> <parent>
</parent> <groupId>com.pmease</groupId>
<artifactId>parent.general</artifactId>
<build> <version>1.0.0</version>
<plugins> </parent>
<plugin> <build>
<groupId>com.pmease</groupId> <plugins>
<artifactId>plugin.maven</artifactId> <plugin>
</plugin> <groupId>com.pmease</groupId>
<plugin> <artifactId>plugin.maven</artifactId>
<artifactId>maven-source-plugin</artifactId> </plugin>
</plugin> <plugin>
<plugin> <artifactId>maven-source-plugin</artifactId>
<artifactId>maven-javadoc-plugin</artifactId> </plugin>
</plugin> <plugin>
</plugins> <artifactId>maven-javadoc-plugin</artifactId>
</build> </plugin>
</plugins>
<dependencies> </build>
<dependency> <dependencies>
<groupId>com.google.inject</groupId> <dependency>
<artifactId>guice</artifactId> <groupId>com.google.inject</groupId>
<version>3.0</version> <artifactId>guice</artifactId>
</dependency> <version>3.0</version>
<dependency> </dependency>
<groupId>com.pmease</groupId> <dependency>
<artifactId>commons.bootstrap</artifactId> <groupId>com.pmease</groupId>
<version>1.0.0</version> <artifactId>commons.bootstrap</artifactId>
</dependency> <version>1.0.2</version>
<dependency> </dependency>
<groupId>org.slf4j</groupId> <dependency>
<artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId>
<version>1.6.4</version> <artifactId>slf4j-api</artifactId>
</dependency> <version>1.6.4</version>
<dependency> </dependency>
<groupId>com.google.inject.extensions</groupId> <dependency>
<artifactId>guice-multibindings</artifactId> <groupId>com.google.inject.extensions</groupId>
<version>3.0</version> <artifactId>guice-multibindings</artifactId>
</dependency> <version>3.0</version>
<dependency> </dependency>
<groupId>com.pmease</groupId> <dependency>
<artifactId>commons.util</artifactId> <groupId>com.pmease</groupId>
<version>1.0.0</version> <artifactId>commons.util</artifactId>
</dependency> <version>1.0.2</version>
</dependencies> </dependency>
</dependencies>
<repositories> <repositories>
<repository> <repository>
<id>pmeaseRepo</id> <id>pmeaseRepo</id>
<name>PMEase Repository</name> <name>PMEase Repository</name>
<releases> <releases>
<enabled>true</enabled> <enabled>true</enabled>
<updatePolicy>never</updatePolicy> <updatePolicy>never</updatePolicy>
<checksumPolicy>fail</checksumPolicy> <checksumPolicy>fail</checksumPolicy>
</releases> </releases>
<snapshots> <snapshots>
<enabled>true</enabled> <enabled>true</enabled>
<updatePolicy>always</updatePolicy> <updatePolicy>always</updatePolicy>
<checksumPolicy>fail</checksumPolicy> <checksumPolicy>fail</checksumPolicy>
</snapshots> </snapshots>
<url>http://artifact.pmease.com/</url> <url>http://artifact.pmease.com/</url>
</repository> </repository>
</repositories> </repositories>
<version>1.0.2</version>
</project> </project>

View File

@ -1,83 +1,80 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <?xml version="1.0" encoding="UTF-8"?>
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.pmease</groupId>
<artifactId>parent.general</artifactId>
<version>1.0.0</version>
</parent>
<artifactId>commons.util</artifactId> <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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<build> <parent>
<plugins> <groupId>com.pmease</groupId>
<plugin> <artifactId>parent.general</artifactId>
<groupId>com.pmease</groupId> <version>1.0.0</version>
<artifactId>plugin.maven</artifactId> </parent>
</plugin> <artifactId>commons.util</artifactId>
<plugin> <build>
<artifactId>maven-source-plugin</artifactId> <plugins>
</plugin> <plugin>
<plugin> <groupId>com.pmease</groupId>
<artifactId>maven-javadoc-plugin</artifactId> <artifactId>plugin.maven</artifactId>
</plugin> </plugin>
</plugins> <plugin>
</build> <artifactId>maven-source-plugin</artifactId>
</plugin>
<dependencies> <plugin>
<dependency> <artifactId>maven-javadoc-plugin</artifactId>
<groupId>commons-lang</groupId> </plugin>
<artifactId>commons-lang</artifactId> </plugins>
<version>2.6</version> </build>
</dependency> <dependencies>
<dependency> <dependency>
<groupId>commons-codec</groupId> <groupId>commons-lang</groupId>
<artifactId>commons-codec</artifactId> <artifactId>commons-lang</artifactId>
<version>1.6</version> <version>2.6</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>commons-io</groupId> <groupId>commons-codec</groupId>
<artifactId>commons-io</artifactId> <artifactId>commons-codec</artifactId>
<version>2.1</version> <version>1.6</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.google.code.findbugs</groupId> <groupId>commons-io</groupId>
<artifactId>jsr305</artifactId> <artifactId>commons-io</artifactId>
<version>2.0.0</version> <version>2.1</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.google.guava</groupId> <groupId>com.google.code.findbugs</groupId>
<artifactId>guava</artifactId> <artifactId>jsr305</artifactId>
<version>11.0.1</version> <version>2.0.0</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.pmease</groupId> <groupId>com.google.guava</groupId>
<artifactId>commons.bootstrap</artifactId> <artifactId>guava</artifactId>
<version>1.0.0</version> <version>11.0.1</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.pmease</groupId> <groupId>com.pmease</groupId>
<artifactId>commons.test</artifactId> <artifactId>commons.bootstrap</artifactId>
<version>1.0.0</version> <version>1.0.2</version>
</dependency> </dependency>
</dependencies> <dependency>
<groupId>com.pmease</groupId>
<repositories> <artifactId>commons.test</artifactId>
<repository> <version>1.0.0</version>
<id>pmeaseRepo</id> </dependency>
<name>PMEase Repository</name> </dependencies>
<releases> <repositories>
<enabled>true</enabled> <repository>
<updatePolicy>never</updatePolicy> <id>pmeaseRepo</id>
<checksumPolicy>fail</checksumPolicy> <name>PMEase Repository</name>
</releases> <releases>
<snapshots> <enabled>true</enabled>
<enabled>true</enabled> <updatePolicy>never</updatePolicy>
<updatePolicy>always</updatePolicy> <checksumPolicy>fail</checksumPolicy>
<checksumPolicy>fail</checksumPolicy> </releases>
</snapshots> <snapshots>
<url>http://artifact.pmease.com/</url> <enabled>true</enabled>
</repository> <updatePolicy>always</updatePolicy>
</repositories> <checksumPolicy>fail</checksumPolicy>
</snapshots>
</project> <url>http://artifact.pmease.com/</url>
</repository>
</repositories>
<version>1.0.2</version>
</project>

View File

@ -1,82 +1,78 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <?xml version="1.0" encoding="UTF-8"?>
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>parent.plugin</artifactId>
<groupId>com.pmease</groupId>
<version>1.0.0</version>
</parent>
<artifactId>commons.wicket</artifactId>
<version>1.0.1</version>
<build> <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/xsd/maven-4.0.0.xsd">
<plugins> <modelVersion>4.0.0</modelVersion>
<plugin> <parent>
<groupId>com.pmease</groupId> <artifactId>parent.plugin</artifactId>
<artifactId>plugin.maven</artifactId> <groupId>com.pmease</groupId>
</plugin> <version>1.0.0</version>
<plugin> </parent>
<artifactId>maven-source-plugin</artifactId> <artifactId>commons.wicket</artifactId>
</plugin> <version>1.0.2</version>
<plugin> <build>
<artifactId>maven-javadoc-plugin</artifactId> <plugins>
</plugin> <plugin>
</plugins> <groupId>com.pmease</groupId>
</build> <artifactId>plugin.maven</artifactId>
</plugin>
<dependencies> <plugin>
<dependency> <artifactId>maven-source-plugin</artifactId>
<groupId>org.apache.wicket</groupId> </plugin>
<artifactId>wicket-core</artifactId> <plugin>
<version>1.5.5</version> <artifactId>maven-javadoc-plugin</artifactId>
</dependency> </plugin>
<dependency> </plugins>
<groupId>org.apache.wicket</groupId> </build>
<artifactId>wicket-extensions</artifactId> <dependencies>
<version>1.5.5</version> <dependency>
</dependency> <groupId>org.apache.wicket</groupId>
<dependency> <artifactId>wicket-core</artifactId>
<groupId>org.apache.wicket</groupId> <version>1.5.5</version>
<artifactId>wicket-request</artifactId> </dependency>
<version>1.5.5</version> <dependency>
</dependency> <groupId>org.apache.wicket</groupId>
<dependency> <artifactId>wicket-extensions</artifactId>
<groupId>org.apache.wicket</groupId> <version>1.5.5</version>
<artifactId>wicket-util</artifactId> </dependency>
<version>1.5.5</version> <dependency>
</dependency> <groupId>org.apache.wicket</groupId>
<dependency> <artifactId>wicket-request</artifactId>
<groupId>org.apache.wicket</groupId> <version>1.5.5</version>
<artifactId>wicket-velocity</artifactId> </dependency>
<version>1.5.5</version> <dependency>
</dependency> <groupId>org.apache.wicket</groupId>
<dependency> <artifactId>wicket-util</artifactId>
<groupId>com.pmease</groupId> <version>1.5.5</version>
<artifactId>commons.jetty</artifactId> </dependency>
<version>1.0.1</version> <dependency>
</dependency> <groupId>org.apache.wicket</groupId>
</dependencies> <artifactId>wicket-velocity</artifactId>
<version>1.5.5</version>
<properties> </dependency>
<moduleClass>com.pmease.commons.wicket.WicketModule</moduleClass> <dependency>
</properties> <groupId>com.pmease</groupId>
<artifactId>commons.jetty</artifactId>
<repositories> <version>1.0.2</version>
<repository> </dependency>
<id>pmeaseRepo</id> </dependencies>
<name>PMEase Repository</name> <properties>
<releases> <moduleClass>com.pmease.commons.wicket.WicketModule</moduleClass>
<enabled>true</enabled> </properties>
<updatePolicy>never</updatePolicy> <repositories>
<checksumPolicy>fail</checksumPolicy> <repository>
</releases> <id>pmeaseRepo</id>
<snapshots> <name>PMEase Repository</name>
<enabled>true</enabled> <releases>
<updatePolicy>always</updatePolicy> <enabled>true</enabled>
<checksumPolicy>fail</checksumPolicy> <updatePolicy>never</updatePolicy>
</snapshots> <checksumPolicy>fail</checksumPolicy>
<url>http://artifact.pmease.com/</url> </releases>
</repository> <snapshots>
</repositories> <enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</project> <checksumPolicy>fail</checksumPolicy>
</snapshots>
<url>http://artifact.pmease.com/</url>
</repository>
</repositories>
</project>