| POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<!--
jDTAUS Core
Copyright (c) 2005 Christian Schulte
Christian Schulte, Haldener Strasse 72, 58095 Hagen, Germany
<schulte2005@users.sourceforge.net> (+49 2331 3543887)
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-->
<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">
<parent>
<artifactId>jdtaus-core</artifactId>
<groupId>org.jdtaus</groupId>
<version>1.9.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.jdtaus.core</groupId>
<artifactId>jdtaus-core-utilities</artifactId>
<name>jDTAUS Core Utilities</name>
<description>jDTAUS core utility components.</description>
<build>
<resources>
<resource>
<filtering>true</filtering>
<directory>src/main/resources</directory>
</resource>
</resources>
<testResources>
<testResource>
<filtering>true</filtering>
<directory>src/test/resources</directory>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>-Xmx256m</argLine>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<systemPropertyVariables>
<java.util.logging.config.file>${project.build.testOutputDirectory}/logging.properties</java.util.logging.config.file>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>org.jdtaus.mojo</groupId>
<artifactId>jdtaus-container-mojo</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.jdtaus.core.container</groupId>
<artifactId>jdtaus-core-client-container</artifactId>
<version>${jdtausCoreVersion}</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<configuration>
<locales>en</locales>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.jdtaus.core</groupId>
<artifactId>jdtaus-core-messages</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jdtaus.core</groupId>
<artifactId>jdtaus-core-spi</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jdtaus.core</groupId>
<artifactId>jdtaus-core-it</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jdtaus.core.logging</groupId>
<artifactId>jdtaus-core-jdk-logging</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jdtaus.core.monitor</groupId>
<artifactId>jdtaus-core-task-monitor</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jdtaus.core.lang</groupId>
<artifactId>jdtaus-core-memory-manager</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jdtaus.core.text</groupId>
<artifactId>jdtaus-core-application-logger</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.jdtaus.mojo</groupId>
<artifactId>jdtaus-container-mojo</artifactId>
<version>3.6</version>
<configuration>
<moduleName>${project.name}</moduleName>
</configuration>
</plugin>
</plugins>
</reporting>
</project>
|