Author: rdonkin
Date: Tue Jul 7 09:05:46 2009
New Revision: 791759
URL: http://svn.apache.org/viewvc?rev=791759&view=rev
Log:
Upgraded to releaseed version of MPT
Added:
james/server/trunk/stage/org.apache.james/jars/apache-james-mpt-antlib-0.1.jar
(with props)
james/server/trunk/stage/org.apache.james/jars/apache-james-mpt-main-0.1.jar
(with props)
james/server/trunk/stage/org.apache.james/poms/apache-james-mpt-antlib-0.1.pom
(with props)
james/server/trunk/stage/org.apache.james/poms/apache-james-mpt-main-0.1.pom
(with props)
james/server/trunk/stage/org.apache.james/poms/apache-james-mpt-project-0.1.pom
(with props)
Removed:
james/server/trunk/stage/org.apache.james/jars/apache-james-mtp-0.1-SNAPSHOT.jar
james/server/trunk/stage/org.apache.james/jars/apache-james-mtp-antlib-0.1-SNAPSHOT.jar
Modified:
james/server/trunk/include.properties
Modified: james/server/trunk/include.properties
URL:
http://svn.apache.org/viewvc/james/server/trunk/include.properties?rev=791759&r1=791758&r2=791759&view=diff
==============================================================================
--- james/server/trunk/include.properties (original)
+++ james/server/trunk/include.properties Tue Jul 7 09:05:46 2009
@@ -364,5 +364,5 @@
# Smoke Tests
#---------------------------------------------------
-mpt.jar=${path.lib.james}/apache-james-mtp-0.1-SNAPSHOT.jar
-mpt-antlib.jar=${path.lib.james}/apache-james-mtp-antlib-0.1-SNAPSHOT.jar
+mpt.jar=${path.lib.james}/apache-james-mpt-main-0.1.jar
+mpt-antlib.jar=${path.lib.james}/apache-james-mpt-antlib-0.1.jar
Added:
james/server/trunk/stage/org.apache.james/jars/apache-james-mpt-antlib-0.1.jar
URL:
http://svn.apache.org/viewvc/james/server/trunk/stage/org.apache.james/jars/apache-james-mpt-antlib-0.1.jar?rev=791759&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
james/server/trunk/stage/org.apache.james/jars/apache-james-mpt-antlib-0.1.jar
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
james/server/trunk/stage/org.apache.james/jars/apache-james-mpt-main-0.1.jar
URL:
http://svn.apache.org/viewvc/james/server/trunk/stage/org.apache.james/jars/apache-james-mpt-main-0.1.jar?rev=791759&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
james/server/trunk/stage/org.apache.james/jars/apache-james-mpt-main-0.1.jar
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
james/server/trunk/stage/org.apache.james/poms/apache-james-mpt-antlib-0.1.pom
URL:
http://svn.apache.org/viewvc/james/server/trunk/stage/org.apache.james/poms/apache-james-mpt-antlib-0.1.pom?rev=791759&view=auto
==============================================================================
---
james/server/trunk/stage/org.apache.james/poms/apache-james-mpt-antlib-0.1.pom
(added)
+++
james/server/trunk/stage/org.apache.james/poms/apache-james-mpt-antlib-0.1.pom
Tue Jul 7 09:05:46 2009
@@ -0,0 +1,172 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+-->
+<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>apache-james-mpt-project</artifactId>
+ <groupId>org.apache.james</groupId>
+ <version>0.1</version>
+ <!-- Either this really points to the james-project/pom.xml or you
+ will have to tune the local repository, later, in this file -->
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.apache.james</groupId>
+ <artifactId>apache-james-mpt-antlib</artifactId>
+ <name>Apache JAMES MPT AntLib</name>
+ <description>Apache JAMES Mail Protocol Tester (MTP) is a library providing
a framework for the
+scritable functional testing of ASCII based line protocols. This AntLib
provides an easy interface
+to the library requiring no extra coding.</description>
+ <url>http://james.apache.org/mpt/antlib</url>
+ <dependencies>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>apache-james-mpt-main</artifactId>
+ <!-- TODO: Use dependency from project pom -->
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>jmock</groupId>
+ <artifactId>jmock</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-antunit</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>apache-james-mpt-main</artifactId>
+ <!-- TODO: Use dependency from project pom -->
+ <version>${project.version}</version>
+ <type>test-jar</type>
+ <scope>test</scope>
+ </dependency>
+
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>test</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <configuration>
+ <tasks>
+ <ant antfile="src/test/resources/build.xml" inheritAll="false"
inheritRefs="false">
+ <property name="jar.name"
location="${project.build.outputDirectory}" />
+ <property name="base.dir" location="${basedir}" />
+ <property name="test.skipped" value="${maven.test.skip}" />
+ <property name="test.classpath" refid="maven.test.classpath"
/>
+ </ant>
+ </tasks>
+ </configuration>
+ </execution>
+ </executions>
+ <dependencies>
+ <!-- AntUnit require Ant 1.7+ -->
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant</artifactId>
+ <version>1.7.1</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>2.2</version>
+ <configuration>
+ <archive>
+
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
+ <manifestEntries>
+ <Specification-Title>Apache James MPT
AntLib</Specification-Title>
+ <Specification-Version>${pom.version}</Specification-Version>
+ <Specification-Vendor>The Apache Software
Foundation</Specification-Vendor>
+ <Implementation-Title>Apache James MPT
AntLib</Implementation-Title>
+ <Implementation-Version>${pom.version}</Implementation-Version>
+ <Implementation-Vendor>The Apache Software
Foundation</Implementation-Vendor>
+ <Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id>
+ <url>${pom.url}</url>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <version>1.4.3</version>
+ <executions>
+ <execution>
+ <id>bundle-manifest</id>
+ <phase>process-classes</phase>
+ <goals>
+ <goal>manifest</goal>
+ </goals>
+ </execution>
+ </executions>
+ <extensions>true</extensions>
+ <configuration>
+ <instructions>
+
<Export-Package>org.apache.james.mpt.ant</Export-Package>
+ <Embed-Dependency>*;scope=runtime</Embed-Dependency>
+ </instructions>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.4</version>
+ <executions>
+ <execution>
+ <id>create-javadocs</id>
+ <phase>package</phase>
+ <goals>
+ <goal>javadoc</goal>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+ <scm>
+
<connection>scm:svn:http://svn.apache.org/repos/asf/james/mpt/tags/apache-james-mpt-0.1/antlib</connection>
+
<developerConnection>scm:svn:https://[email protected]/repos/asf/james/mpt/tags/apache-james-mpt-0.1/antlib</developerConnection>
+
<url>http://svn.apache.org/viewcvs.cgi/james/mpt/tags/apache-james-mpt-0.1/antlib?root=Apache-SVN</url>
+ </scm>
+
+</project>
Propchange:
james/server/trunk/stage/org.apache.james/poms/apache-james-mpt-antlib-0.1.pom
------------------------------------------------------------------------------
svn:eol-style = native
Added:
james/server/trunk/stage/org.apache.james/poms/apache-james-mpt-main-0.1.pom
URL:
http://svn.apache.org/viewvc/james/server/trunk/stage/org.apache.james/poms/apache-james-mpt-main-0.1.pom?rev=791759&view=auto
==============================================================================
---
james/server/trunk/stage/org.apache.james/poms/apache-james-mpt-main-0.1.pom
(added)
+++
james/server/trunk/stage/org.apache.james/poms/apache-james-mpt-main-0.1.pom
Tue Jul 7 09:05:46 2009
@@ -0,0 +1,116 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+-->
+<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>apache-james-mpt-project</artifactId>
+ <groupId>org.apache.james</groupId>
+ <version>0.1</version>
+ <!-- Either this really points to the james-project/pom.xml or you
+ will have to tune the local repository, later, in this file -->
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.apache.james</groupId>
+ <artifactId>apache-james-mpt-main</artifactId>
+ <name>Apache JAMES MPT Main</name>
+ <description>Apache JAMES Mail Protocol Tester (MTP) is a library providing
a framework for the
+scritable functional testing of ASCII based line protocols.</description>
+ <url>http://james.apache.org/mpt/main</url>
+ <dependencies>
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>jmock</groupId>
+ <artifactId>jmock</artifactId>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+ <scm>
+
<connection>scm:svn:http://svn.apache.org/repos/asf/james/mpt/tags/apache-james-mpt-0.1/main</connection>
+
<developerConnection>scm:svn:https://[email protected]/repos/asf/james/mpt/tags/apache-james-mpt-0.1/main</developerConnection>
+
<url>http://svn.apache.org/viewcvs.cgi/james/mpt/tags/apache-james-mpt-0.1/main?root=Apache-SVN</url>
+ </scm>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>2.2</version>
+ <configuration>
+ <archive>
+
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
+ <manifestEntries>
+ <Specification-Title>Apache James MPT</Specification-Title>
+ <Specification-Version>${pom.version}</Specification-Version>
+ <Specification-Vendor>The Apache Software
Foundation</Specification-Vendor>
+ <Implementation-Title>Apache James MPT</Implementation-Title>
+ <Implementation-Version>${pom.version}</Implementation-Version>
+ <Implementation-Vendor>The Apache Software
Foundation</Implementation-Vendor>
+ <Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id>
+ <url>${pom.url}</url>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <version>1.4.3</version>
+ <executions>
+ <execution>
+ <id>bundle-manifest</id>
+ <phase>process-classes</phase>
+ <goals>
+ <goal>manifest</goal>
+ </goals>
+ </execution>
+ </executions>
+ <extensions>true</extensions>
+ <configuration>
+ <instructions>
+ <Export-Package>org.apache.james.mpt</Export-Package>
+ <Embed-Dependency>*;scope=runtime</Embed-Dependency>
+ </instructions>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.4</version>
+ <executions>
+ <execution>
+ <id>create-javadocs</id>
+ <phase>package</phase>
+ <goals>
+ <goal>javadoc</goal>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Propchange:
james/server/trunk/stage/org.apache.james/poms/apache-james-mpt-main-0.1.pom
------------------------------------------------------------------------------
svn:eol-style = native
Added:
james/server/trunk/stage/org.apache.james/poms/apache-james-mpt-project-0.1.pom
URL:
http://svn.apache.org/viewvc/james/server/trunk/stage/org.apache.james/poms/apache-james-mpt-project-0.1.pom?rev=791759&view=auto
==============================================================================
---
james/server/trunk/stage/org.apache.james/poms/apache-james-mpt-project-0.1.pom
(added)
+++
james/server/trunk/stage/org.apache.james/poms/apache-james-mpt-project-0.1.pom
Tue Jul 7 09:05:46 2009
@@ -0,0 +1,370 @@
+<?xml version="1.0" encoding="ISO-8859-15"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+-->
+<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>james-project</artifactId>
+ <groupId>org.apache.james</groupId>
+ <version>1.3</version>
+ <relativePath>james-project/project/pom.xml</relativePath>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.apache.james</groupId>
+ <artifactId>apache-james-mpt-project</artifactId>
+ <name>Apache JAMES MPT Project</name>
+ <version>0.1</version>
+ <description>Functional test framework specialised for the ASCII line-base
protocols common in mail.</description>
+ <url>http://james.apache.org/mpt/</url>
+ <issueManagement>
+ <url>http://issues.apache.org/jira/browse/MPT</url>
+ </issueManagement>
+ <inceptionYear>2008</inceptionYear>
+ <packaging>pom</packaging>
+ <modules>
+ <module>main</module>
+ <module>antlib</module>
+ <module>app</module>
+ <module>assemble</module>
+ </modules>
+ <scm>
+
<connection>scm:svn:http://svn.apache.org/repos/asf/james/mpt/tags/apache-james-mpt-0.1</connection>
+
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/james/mpt/tags/apache-james-mpt-0.1</developerConnection>
+
<url>http://svn.apache.org/viewcvs.cgi/james/mpt/trunk/tags/apache-james-mpt-0.1?root=Apache-SVN</url>
+ </scm>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <optimize>true</optimize>
+ <source>${target.jdk}</source>
+ <target>${target.jdk}</target>
+ <encoding>iso8859-1</encoding>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifest>
+
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+ </manifest>
+ </archive>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-jar-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>test-jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <!-- Add NOTICE and LICENSE to generated JAR -->
+ <plugin>
+ <artifactId>maven-remote-resources-plugin</artifactId>
+ <version>1.0</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>process</goal>
+ </goals>
+ <configuration>
+ <resourceBundles>
+
<resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
+ </resourceBundles>
+ <properties>
+ <postProjectText>This file is automatically generated by
dependencies declared in pom.xml</postProjectText>
+ <addLicense>true</addLicense>
+ </properties>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-doap-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>site</id>
+ <phase>site</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <doapOptions>
+ <programmingLanguage>java</programmingLanguage>
+ <category>mail</category>
+ <download-page>http://james.apache.org/download.cgi</download-page>
+ </doapOptions>
+
+ <asfExtOptions>
+ <included>true</included>
+ <pmc>http://james.apache.org</pmc>
+ <name>Apache JAMES</name>
+ </asfExtOptions>
+
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <version>2.0.4</version>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ <repositories>
+ <!-- enable central that is otherwise disabled by the parent pom. -->
+ <repository>
+ <id>central</id>
+ <url>http://repo1.maven.org/maven2</url>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ </repository>
+ </repositories>
+
+ <mailingLists>
+ <mailingList>
+ <name>Apache James Server User Lists</name>
+ <subscribe>[email protected]</subscribe>
+ <unsubscribe>[email protected]</unsubscribe>
+ <post>[email protected]</post>
+
<archive>http://mail-archives.apache.org/mod_mbox/james-server-user/</archive>
+ </mailingList>
+ <mailingList>
+ <name>Apache James Server Developer Lists</name>
+ <subscribe>[email protected]</subscribe>
+ <unsubscribe>[email protected]</unsubscribe>
+ <post>[email protected]</post>
+
<archive>http://mail-archives.apache.org/mod_mbox/james-server-dev/</archive>
+ </mailingList>
+ </mailingLists>
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <inherited>true</inherited>
+ </plugin>
+ <plugin>
+ <artifactId>maven-surefire-report-plugin</artifactId>
+ <version>2.4.3</version>
+ <inherited>true</inherited>
+ </plugin>
+ <plugin>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <inherited>true</inherited>
+ <configuration>
+ <aggregate>true</aggregate>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>emma-maven-plugin</artifactId>
+ <inherited>true</inherited>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>jxr-maven-plugin</artifactId>
+ <inherited>true</inherited>
+ </plugin>
+ <plugin>
+ <artifactId>maven-jxr-plugin</artifactId>
+ <inherited>true</inherited>
+ <configuration>
+ <aggregate>true</aggregate>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>rat-maven-plugin</artifactId>
+ <version>1.0-alpha-3</version>
+ <inherited>true</inherited>
+ <configuration>
+ <excludes>
+ <exclude>NOTICE.txt</exclude>
+ <exclude>LICENSE.txt</exclude>
+ <!-- Generated by Maven -->
+ <exclude>release.properties</exclude>
+ <exclude>dist/**/*</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>taglist-maven-plugin</artifactId>
+ <version>2.2</version>
+ <inherited>true</inherited>
+ </plugin>
+ <plugin>
+ <artifactId>maven-pmd-plugin</artifactId>
+ <inherited>true</inherited>
+ <configuration>
+ <aggregate>true</aggregate>
+ <targetjdk>${target.jdk}</targetjdk>
+ <rulesets>
+ <ruleset>/rulesets/basic.xml</ruleset>
+ <ruleset>/rulesets/controversial.xml</ruleset>
+ </rulesets>
+ <format>xml</format>
+ <linkXref>true</linkXref>
+ <sourceEncoding>${project.build.sourceEncoding}</sourceEncoding>
+ <minimumTokens>100</minimumTokens>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-site-plugin</artifactId>
+ <inherited>true</inherited>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-changes-plugin</artifactId>
+ <configuration>
+ <onlyCurrentVersion>true</onlyCurrentVersion>
+ <resolutionIds>Closed</resolutionIds>
+ </configuration>
+ <reportSets>
+ <reportSet>
+ <reports>
+ <report>jira-report</report>
+ </reports>
+ </reportSet>
+ </reportSets>
+ </plugin>
+ </plugins>
+ </reporting>
+
+ <distributionManagement>
+ <site>
+ <id>${james.www.id}</id>
+ <url>${james.mpt.www}</url>
+ </site>
+ </distributionManagement>
+ <dependencyManagement>
+ <dependencies>
+
+ <dependency>
+<!-- TODO: FIXME
+ My maven foo is weak!
+ Can't seem to be able to pick up this version from the antlib module
:-/
+ -->
+ <groupId>${project.groupId}</groupId>
+ <artifactId>apache-james-mpt</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ <version>1.1</version>
+ <exclusions>
+ <exclusion>
+ <artifactId>logkit</artifactId>
+ <groupId>logkit</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>avalon-framework</artifactId>
+ <groupId>avalon-framework</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>log4j</artifactId>
+ <groupId>log4j</groupId>
+ </exclusion>
+ <exclusion>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ </dependency>
+ <dependency>
+ <groupId>jmock</groupId>
+ <artifactId>jmock</artifactId>
+ <version>1.1.0</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant</artifactId>
+ <version>1.7.1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-antunit</artifactId>
+ <version>1.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>commons-cli</groupId>
+ <artifactId>commons-cli</artifactId>
+ <version>1.1</version>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
+ <profiles>
+ </profiles>
+ <properties>
+ <!--
+ The website is committed to subversion. This property can be overriden
+ to upload the site to a local staging location.
+ For example, adding the following to ~/.m2/settings.xml will upload
+ to localhost:
+
+ <profiles>
+ <profile>
+ <id>main</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <properties>
+ <james.www>scp://localhost/www</james.www>
+ <james.www.id>localhost</james.www.id>
+ ...
+ -->
+ <!-- General location for site stage -->
+ <james.www>scp://people.apache.org/www/james.apache.org/</james.www>
+ <!-- Project specific location, allowing specific override -->
+ <james.mpt.www>${james.www}/mpt/</james.mpt.www>
+ <!-- Overridding this value allows single set of loopback settings to be
maintained -->
+ <james.www.id>mpt-website</james.www.id>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <target.jdk>1.5</target.jdk>
+ </properties>
+
+</project>
Propchange:
james/server/trunk/stage/org.apache.james/poms/apache-james-mpt-project-0.1.pom
------------------------------------------------------------------------------
svn:eol-style = native
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]