Author: olamy Date: Fri Dec 23 16:14:38 2011 New Revision: 1222718 URL: http://svn.apache.org/viewvc?rev=1222718&view=rev Log: missed to add parent pom
Added: tomcat/sandbox/trunk-mvn-build/pom.xml (with props) Added: tomcat/sandbox/trunk-mvn-build/pom.xml URL: http://svn.apache.org/viewvc/tomcat/sandbox/trunk-mvn-build/pom.xml?rev=1222718&view=auto ============================================================================== --- tomcat/sandbox/trunk-mvn-build/pom.xml (added) +++ tomcat/sandbox/trunk-mvn-build/pom.xml Fri Dec 23 16:14:38 2011 @@ -0,0 +1,143 @@ +<?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"> + + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache</groupId> + <artifactId>apache</artifactId> + <version>9</version> + </parent> + + <groupId>org.apache.tomcat</groupId> + <artifactId>tomcat-parent</artifactId> + <version>7.0.24-SNAPSHOT</version> + <packaging>pom</packaging> + + <name>Apache Tomcat</name> + <url>http://tomcat.apache.org</url> + + <properties> + <compiler.source>1.6</compiler.source> + <compiler.target>1.6</compiler.target> + <compiler.encoding>ISO-8859-1</compiler.encoding> + <compiler.debug>true</compiler.debug> + <!-- looks to not be UTF-8 --> + <project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding> + <failIfNoTests>false</failIfNoTests> + </properties> + + + <modules> + <module>tomcat-juli</module> + <module>tomcat-annotations-api</module> + <module>tomcat-servlet-api</module> + <module>tomcat-mail-api</module> + <module>tomcat-api</module> + <module>tomcat-util</module> + <module>tomcat-coyote</module> + <module>tomcat-catalina</module> + <module>tomcat-catalina-ant</module> + <module>tomcat-tribes</module> + <module>tomcat-catalina-ha</module> + <module>tomcat-catalina-jmx-remote</module> + <module>tomcat-catalina-ws</module> + <module>tomcat-dbcp</module> + <module>tomcat-el-api</module> + <module>tomcat-jsp-api</module> + <module>tomcat-jasper-el</module> + <module>tomcat-jasper</module> + <module>tomcat-embed-logging-juli</module> + <module>tomcat-embed-logging-log4j</module> + <module>tomcat-embed-core</module> + <module>tomcat-embed-jasper</module> + <module>tomcat-extras-juli-adapters</module> + <module>tomcat-i18n-es</module> + <module>tomcat-i18n-fr</module> + <module>tomcat-i18n-ja</module> + <module>tomcat-webapps</module> + <module>tomcat-tests</module> + <module>bootstrap</module> + <module>apache-tomcat</module> + </modules> + + <dependencyManagement> + + </dependencyManagement> + + + <build> + <pluginManagement> + <plugins> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-clean-plugin</artifactId> + <version>2.4.1</version> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>2.3.2</version> + <configuration> + <source>${compiler.source}</source> + <target>${compiler.target}</target> + <debug>${compiler.debug}</debug> + <encoding>${compiler.encoding}</encoding> + </configuration> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.11</version> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-war-plugin</artifactId> + <version>2.1.1</version> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-enforcer-plugin</artifactId> + <version>1.0.1</version> + <configuration> + <rules> + <dependencyConvergence/> + </rules> + </configuration> + </plugin> + + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <version>2.3.6</version> + <extensions>true</extensions> + </plugin> + + </plugins> + </pluginManagement> + </build> + + +</project> Propchange: tomcat/sandbox/trunk-mvn-build/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: tomcat/sandbox/trunk-mvn-build/pom.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org