Author: sebb Date: Sun Jul 24 13:08:49 2011 New Revision: 1150351 URL: http://svn.apache.org/viewvc?rev=1150351&view=rev Log: Move to Commons Parent; remove common settings Update site to Commons style
Modified: commons/proper/bcel/trunk/doap_bcel.rdf commons/proper/bcel/trunk/pom.xml commons/proper/bcel/trunk/src/site/site.xml Modified: commons/proper/bcel/trunk/doap_bcel.rdf URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/doap_bcel.rdf?rev=1150351&r1=1150350&r2=1150351&view=diff ============================================================================== --- commons/proper/bcel/trunk/doap_bcel.rdf (original) +++ commons/proper/bcel/trunk/doap_bcel.rdf Sun Jul 24 13:08:49 2011 @@ -18,9 +18,9 @@ * under the License. --> <rdf:RDF xmlns="http://usefulinc.com/ns/doap#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:asfext="http://projects.apache.org/ns/asfext#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:doap="http://usefulinc.com/ns/doap#" xml:lang="en"> - <Project rdf:about="http://jakarta.apache.org/bcel/"> + <Project rdf:about="http://commons.apache.org/bcel/"> <name>Apache Commons BCEL</name> - <homepage rdf:resource="http://jakarta.apache.org/bcel/"/> + <homepage rdf:resource="http://commons.apache.org/bcel/"/> <programming-language>Java</programming-language> <!-- Look at http://projects.apache.org/categories.html --> Modified: commons/proper/bcel/trunk/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/pom.xml?rev=1150351&r1=1150350&r2=1150351&view=diff ============================================================================== --- commons/proper/bcel/trunk/pom.xml (original) +++ commons/proper/bcel/trunk/pom.xml Sun Jul 24 13:08:49 2011 @@ -24,9 +24,9 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>org.apache</groupId> - <artifactId>apache</artifactId> - <version>9</version> + <groupId>org.apache.commons</groupId> + <artifactId>commons-parent</artifactId> + <version>21</version> </parent> <groupId>org.apache.bcel</groupId> @@ -36,9 +36,25 @@ <name>Commons BCEL</name> <description>Bytecode Engineering Library</description> - <url>http://jakarta.apache.org/bcel</url> + <url>http://commons.apache.org/bcel</url> <inceptionYear>2004</inceptionYear> + <properties> + <project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding> + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> + <maven.compile.source>1.5</maven.compile.source> + <maven.compile.target>1.5</maven.compile.target> + <commons.componentid>bcel</commons.componentid> + <commons.release.version>6.0</commons.release.version> + <commons.release.desc>(Java 5.0+)</commons.release.desc> + <!-- Configuration properties for the OSGi maven-bundle-plugin --> + <commons.osgi.symbolicName>org.apache.${commons.componentid}</commons.osgi.symbolicName> + <commons.osgi.export>org.apache.bcel.*;version=${project.version};-noimport:=true</commons.osgi.export> + <commons.osgi.import>*</commons.osgi.import> + <commons.osgi.dynamicImport /> + <commons.osgi.private /> + </properties> + <licenses> <license> <name>Apache License, Version 2.0</name> @@ -151,54 +167,18 @@ <url>http://svn.apache.org/repos/asf/commons/proper/bcel/trunk</url> </scm> - <distributionManagement> - <repository> - <id>releases</id> - <url>scpexe://people.apache.org/home/${USER}/public_html/releases/bcel</url> - </repository> - <snapshotRepository> - <id>snaphots</id> - <url>scpexe://people.apache.org/home/${USER}/public_html/shapshots/bcel</url> - </snapshotRepository> - <site> - <id>website</id> - <url>scpexe://people.apache.org/home/${USER}/public_html/websites/bcel</url> - </site> - </distributionManagement> - <build> - <plugins> + <plugins> <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <debug>true</debug> - <source>1.5</source> - <target>1.5</target> - </configuration> - <executions> - <execution> - <!-- need default-cli so compiler:testCompile picks up the settings --> - <id>default-cli</id> - <phase>process-test-sources</phase> - <goals> - <goal>testCompile</goal> - </goals> - <configuration> - <source>1.5</source> - <target>1.5</target> - </configuration> - </execution> - </executions> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jar-plugin</artifactId> - <configuration> - <archive> - <manifestFile>META-INF/MANIFEST.MF</manifestFile> - </archive> - </configuration> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>test-jar</goal> + </goals> + </execution> + </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> @@ -209,8 +189,6 @@ <excludes> <exclude>**/Abstract*</exclude> </excludes> - <testFailureIgnore>false</testFailureIgnore> - <skip>false</skip> </configuration> </plugin> </plugins> @@ -218,35 +196,6 @@ <reporting> <plugins> - <plugin> - <artifactId>maven-project-info-reports-plugin</artifactId> - <reportSets> - <reportSet> - <reports> - <report>project-team</report> - <report>dependencies</report> - <report>license</report> - <report>scm</report> - </reports> - </reportSet> - </reportSets> - </plugin> - - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-javadoc-plugin</artifactId> - <version>2.6.1</version> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.4.3</version> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jxr-plugin</artifactId> - <version>2.1</version> - </plugin> <!-- <plugin> <groupId>org.codehaus.mojo</groupId> Modified: commons/proper/bcel/trunk/src/site/site.xml URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/site/site.xml?rev=1150351&r1=1150350&r2=1150351&view=diff ============================================================================== --- commons/proper/bcel/trunk/src/site/site.xml (original) +++ commons/proper/bcel/trunk/src/site/site.xml Sun Jul 24 13:08:49 2011 @@ -17,33 +17,17 @@ * specific language governing permissions and limitations * under the License. --> -<project name="Apache Jakarta BCEL"> - <!-- - <skin> - <groupId>org.vafer</groupId> - <artifactId>maven-skin</artifactId> - <version>1.1</version> - </skin> - --> +<project name="Apache Commons BCEL"> - <!-- - <bannerLeft> - <name>BCEL</name> - <src>http://jakarta.apache.org/bcel/images/bcel-logo.png</src> - <href>http://jakarta.apache.org/bcel</href> - </bannerLeft> - <bannerRight> - <src>http://maven.apache.org/images/maven-small.gif</src> - </bannerRight> - --> + <bannerRight> + <name>Commons BCEL</name> + <src>/images/logo.gif</src> + <href>/index.html</href> + </bannerRight> <publishDate format="dd MMM yyyy" /> <body> - <links> - <item name="Apache" href="http://www.apache.org/" /> - <item name="Jakarta" href="http://jakarta.apache.org/"/> - </links> <menu name="BCEL"> <item name="About" href="index.html"/> @@ -54,7 +38,5 @@ <item name="Used by" href="projects.html"/> </menu> - <menu ref="reports"/> - </body> </project>