1 <?xml version="1.0" encoding="UTF-8"?> 2 3 <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"> 4 <modelVersion>4.0.0</modelVersion> 5 6 <parent> 7 <artifactId>plexus</artifactId> 8 <groupId>org.codehaus.plexus</groupId> 9 <version>2.0.2</version> 10 <relativePath>../pom/pom.xml</relativePath> 11 </parent> 12 13 <groupId>org.codehaus.plexus</groupId> 14 <artifactId>plexus-components</artifactId> 15 <version>1.1.14</version> 16 <packaging>pom</packaging> 17 18 <name>Plexus Components Parent Project</name> 19 <url>http://plexus.codehaus.org/plexus-components</url> 20 21 22 <!-- Commenting these so they don't run when I try to release this parent POM. 23 I'll uncomment again once the release is done. 24 <modules> 25 <module>plexus-archiver</module> 26 <module>plexus-cli</module> 27 <module>plexus-compiler</module> 28 <module>plexus-digest</module> 29 <module>plexus-i18n</module> 30 <module>plexus-interactivity</module> 31 <module>plexus-interpolation</module> 32 <module>plexus-io</module> 33 <module>plexus-resources</module> 34 <module>plexus-swizzle</module> 35 <module>plexus-velocity</module> 36 </modules> --> 37 38 <scm> 39 <connection>scm:svn:http://svn.codehaus.org/plexus/plexus-components/tags/plexus-components-1.1.14</connection> 40 <developerConnection>scm:svn:https://svn.codehaus.org/plexus/plexus-components/tags/plexus-components-1.1.14</developerConnection> 41 <url>http://fisheye.codehaus.org/browse/plexus/plexus-components/tags/plexus-components-1.1.14</url> 42 </scm> 43 <issueManagement> 44 <system>JIRA</system> 45 <url>http://jira.codehaus.org/browse/PLXCOMP</url> 46 </issueManagement> 47 48 <dependencyManagement> 49 <dependencies> 50 <dependency> 51 <groupId>org.codehaus.plexus</groupId> 52 <artifactId>plexus-container-default</artifactId> 53 <version>1.0-alpha-9-stable-1</version> 54 </dependency> 55 <dependency> 56 <groupId>org.codehaus.plexus</groupId> 57 <artifactId>plexus-utils</artifactId> 58 <version>1.5.5</version> 59 </dependency> 60 <dependency> 61 <groupId>junit</groupId> 62 <artifactId>junit</artifactId> 63 <version>3.8.2</version> 64 <scope>test</scope> 65 </dependency> 66 </dependencies> 67 </dependencyManagement> 68 69 <build> 70 <plugins> 71 <plugin> 72 <artifactId>maven-compiler-plugin</artifactId> 73 <configuration> 74 <source>1.4</source> 75 <target>1.4</target> 76 </configuration> 77 </plugin> 78 <plugin> 79 <groupId>org.codehaus.plexus</groupId> 80 <artifactId>plexus-maven-plugin</artifactId> 81 <version>1.3.4</version> 82 <executions> 83 <execution> 84 <goals> 85 <goal>descriptor</goal> 86 </goals> 87 </execution> 88 </executions> 89 </plugin> 90 </plugins> 91 </build> 92 93 <profiles> 94 <profile><!-- TODO: remove when upgrading parent to 2.0.3 --> 95 <id>reporting</id> 96 <reporting> 97 <plugins> 98 <plugin> 99 <groupId>org.apache.maven.plugins</groupId> 100 <artifactId>maven-project-info-reports-plugin</artifactId> 101 <version>2.1</version> 102 </plugin> 103 <plugin> 104 <groupId>org.apache.maven.plugins</groupId> 105 <artifactId>maven-surefire-report-plugin</artifactId> 106 <version>2.4.3</version> 107 </plugin> 108 <plugin> 109 <groupId>org.apache.maven.plugins</groupId> 110 <artifactId>maven-checkstyle-plugin</artifactId> 111 <version>2.2</version> 112 <configuration> 113 <configLocation>http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml</configLocation> 114 <headerLocation>http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven-header.txt</headerLocation> 115 </configuration> 116 </plugin> 117 <plugin> 118 <groupId>org.apache.maven.plugins</groupId> 119 <artifactId>maven-pmd-plugin</artifactId> 120 <version>2.4</version> 121 <configuration> 122 <rulesets> 123 <ruleset>http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-pmd-plugin/src/main/resources/rulesets/maven.xml</ruleset> 124 </rulesets> 125 </configuration> 126 </plugin> 127 <plugin> 128 <groupId>org.codehaus.mojo</groupId> 129 <artifactId>taglist-maven-plugin</artifactId> 130 <version>2.2</version> 131 </plugin> 132 <plugin> 133 <groupId>org.apache.maven.plugins</groupId> 134 <artifactId>maven-jxr-plugin</artifactId> 135 <version>2.1</version> 136 <configuration> 137 <inputEncoding>${project.build.sourceEncoding}</inputEncoding> 138 </configuration> 139 </plugin> 140 <plugin> 141 <groupId>org.apache.maven.plugins</groupId> 142 <artifactId>maven-javadoc-plugin</artifactId> 143 <version>2.5</version> 144 <configuration> 145 <encoding>${project.build.sourceEncoding}</encoding> 146 <links> 147 <link>http://java.sun.com/j2ee/1.4/docs/api</link> 148 <link>http://junit.sourceforge.net/javadoc/</link> 149 </links> 150 </configuration> 151 <reportSets> 152 <reportSet> 153 <reports> 154 <report>javadoc</report> 155 <report>test-javadoc</report> 156 </reports> 157 </reportSet> 158 </reportSets> 159 </plugin> 160 </plugins> 161 </reporting> 162 </profile> 163 </profiles> 164 </project> 165