159 lines
5.5 KiB
XML
159 lines
5.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>
|
|
<parent>
|
|
<groupId>love.distributedrebirth.jedi</groupId>
|
|
<artifactId>parent-jedi-pom</artifactId>
|
|
<version>〇一。壬寅。一〄-SNAPSHOT</version>
|
|
</parent>
|
|
<groupId>org.x4o</groupId>
|
|
<artifactId>x4o</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>0.8.8-SNAPSHOT</version>
|
|
<name>x4o</name>
|
|
<description>Creates an easy xml layer for objects and creating your own xml language implementations.</description>
|
|
<url>http://www.x4o.org</url>
|
|
<inceptionYear>2004</inceptionYear>
|
|
<organization>
|
|
<name>X4O</name>
|
|
<url>http://www.x4o.org/</url>
|
|
</organization>
|
|
<modules>
|
|
<module>x4o-driver</module>
|
|
<module>x4o-eld-doc</module>
|
|
<module>x4o-html</module>
|
|
<module>x4o-meta</module>
|
|
<module>x4o-tool-ant-plugin</module>
|
|
<module>x4o-tool-maven-plugin</module>
|
|
</modules>
|
|
<properties>
|
|
|
|
<!-- Build plugin versions
|
|
<maven-compiler-plugin.version>2.3.2</maven-compiler-plugin.version>
|
|
<maven-source-plugin.version>2.1.2</maven-source-plugin.version>
|
|
<maven-javadoc-plugin.version>2.9</maven-javadoc-plugin.version>
|
|
<maven-assembly-plugin.version>2.3</maven-assembly-plugin.version>
|
|
<maven-antrun-plugin.version>1.7</maven-antrun-plugin.version>
|
|
<maven-site-plugin.version>3.2</maven-site-plugin.version>
|
|
<maven-pmd-plugin.version>3.0.1</maven-pmd-plugin.version>
|
|
<maven-surefire-plugin.version>2.13</maven-surefire-plugin.version>
|
|
<maven-surefire-report-plugin.version>2.14.1</maven-surefire-report-plugin.version>
|
|
<maven-checkstyle-plugin.version>2.9.1</maven-checkstyle-plugin.version>
|
|
<maven-enforcer-plugin.version>1.0-beta-1</maven-enforcer-plugin.version>
|
|
<maven-project-info-reports-plugin.version>2.6</maven-project-info-reports-plugin.version>
|
|
<maven-release-plugin.version>2.2.2</maven-release-plugin.version>
|
|
<maven-changelog-plugin.version>2.2</maven-changelog-plugin.version>
|
|
<maven-jar-plugin.version>2.4</maven-jar-plugin.version>
|
|
<maven-license-plugin.version>1.10.b1</maven-license-plugin.version>
|
|
<maven-clean-plugin.version>2.4.1</maven-clean-plugin.version>
|
|
-->
|
|
|
|
<!-- Build non-maven plugin versions -->
|
|
<webstart-maven-plugin.version>1.0-beta-1</webstart-maven-plugin.version>
|
|
<launch4j-maven-plugin.version>1.3</launch4j-maven-plugin.version>
|
|
<cobertura-maven-plugin.version>2.5.1</cobertura-maven-plugin.version>
|
|
<taglist-maven-plugin.version>2.4</taglist-maven-plugin.version>
|
|
<jdepend-maven-plugin.version>2.0-beta-2</jdepend-maven-plugin.version>
|
|
|
|
<!-- Build lib versions -->
|
|
<ant-contrib.version>1.0b3</ant-contrib.version>
|
|
<ant-nodeps.version>1.8.1</ant-nodeps.version>
|
|
<ant.version>1.9.0</ant.version>
|
|
<ant-testutil.version>1.9.0</ant-testutil.version>
|
|
|
|
<!-- Build test lib versions -->
|
|
<mockito-all.version>1.9.0</mockito-all.version>
|
|
<testng.version>6.3.1</testng.version>
|
|
<junit.version>4.11</junit.version>
|
|
<xerces.version>2.11.0</xerces.version><!-- Only needed in jdk1.5 -->
|
|
|
|
<!-- Application lib versions -->
|
|
<jasper-el.version>6.0.20</jasper-el.version>
|
|
<juel.version>2.1.0</juel.version>
|
|
|
|
<!-- Maven plugin building -->
|
|
<maven-plugin-api.version>3.0</maven-plugin-api.version>
|
|
<maven-plugin-annotations.version>3.2</maven-plugin-annotations.version>
|
|
<maven-plugin-testing-harness.version>2.0</maven-plugin-testing-harness.version>
|
|
<plexus-utils.version>3.0.1</plexus-utils.version>
|
|
<maven-plugin-plugin.version>3.2</maven-plugin-plugin.version>
|
|
</properties>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter</artifactId>
|
|
<version>5.11.0-M1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.tomcat</groupId>
|
|
<artifactId>jasper-el</artifactId>
|
|
<version>6.0.53</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.odysseus.juel</groupId>
|
|
<artifactId>juel</artifactId>
|
|
<version>2.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.x4o</groupId>
|
|
<artifactId>x4o-driver</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.x4o</groupId>
|
|
<artifactId>x4o-eld-doc</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.x4o</groupId>
|
|
<artifactId>x4o-html</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.x4o</groupId>
|
|
<artifactId>x4o-meta</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.x4o</groupId>
|
|
<artifactId>x4o-tool-ant-plugin</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.x4o</groupId>
|
|
<artifactId>x4o-tool-maven-plugin</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
<profiles>
|
|
<profile>
|
|
<id>x4o-test-none</id>
|
|
<properties>
|
|
<skipTests>true</skipTests>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>x4o-test-speed</id>
|
|
<properties>
|
|
<skipTests>false</skipTests>
|
|
<make-work>todo</make-work>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>x4o-update-schema-cel</id>
|
|
<properties>
|
|
<skipTests>true</skipTests>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>x4o-update-schema-eld</id>
|
|
<properties>
|
|
<skipTests>true</skipTests>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|