Author: struberg Date: Wed Jun 6 07:56:34 2012 New Revision: 1346769 URL: http://svn.apache.org/viewvc?rev=1346769&view=rev Log: fix the maven setup
Added: commons/sandbox/classscan/trunk/pom.xml (with props) Modified: commons/sandbox/classscan/trunk/ (props changed) commons/sandbox/classscan/trunk/impl-refl/ (props changed) commons/sandbox/classscan/trunk/impl-refl/pom.xml commons/sandbox/classscan/trunk/impl-xbf/ (props changed) commons/sandbox/classscan/trunk/impl-xbf/pom.xml Propchange: commons/sandbox/classscan/trunk/ ------------------------------------------------------------------------------ --- svn:ignore (added) +++ svn:ignore Wed Jun 6 07:56:34 2012 @@ -0,0 +1,12 @@ +.idea +.classpath +.project +.settings +*.iml +*.ipr +*.iws +.git +.gitignore +.externalToolBuilders +target +maven-eclipse.xml Propchange: commons/sandbox/classscan/trunk/impl-refl/ ------------------------------------------------------------------------------ --- svn:ignore (added) +++ svn:ignore Wed Jun 6 07:56:34 2012 @@ -0,0 +1,12 @@ +target +.metadata +.classpath +.project +.settings +*.iml +*.ipr +*.iws +.git +.gitignore +.externalToolBuilders +maven-eclipse.xml Modified: commons/sandbox/classscan/trunk/impl-refl/pom.xml URL: http://svn.apache.org/viewvc/commons/sandbox/classscan/trunk/impl-refl/pom.xml?rev=1346769&r1=1346768&r2=1346769&view=diff ============================================================================== --- commons/sandbox/classscan/trunk/impl-refl/pom.xml (original) +++ commons/sandbox/classscan/trunk/impl-refl/pom.xml Wed Jun 6 07:56:34 2012 @@ -19,103 +19,96 @@ --> <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"> - <modelVersion>4.0.0</modelVersion> - - <parent> - <groupId>org.apache.commons</groupId> - <artifactId>commons-parent</artifactId> - <version>24</version> - </parent> - - <groupId>org.apache.commons</groupId> - <artifactId>classscan</artifactId> - <name>Class Scan</name> - <version>0.1-SNAPSHOT</version> - <description>A library to obtain information about class(es) before the jvm loads the class</description> - - <properties> - <maven.compile.source>1.5</maven.compile.source> - <maven.compile.target>1.5</maven.compile.target> - <commons.subproject.location>sandbox/classscan/trunk</commons.subproject.location> - </properties> - - <scm> - <connection>scm:svn:http://svn.apache.org/repos/asf/commons/${commons.subproject.location}</connection> - <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/${commons.subproject.location}</developerConnection> - <url>http://svn.apache.org/viewvc/commons/${commons.subproject.location}</url> - </scm> - - <build> - - <plugins> - - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <configuration> - <argLine>-Xmx512m</argLine> - </configuration> - </plugin> - - </plugins> - - </build> - - <dependencies> - - <dependency> - <groupId>org.apache.bcel</groupId> - <artifactId>bcel</artifactId> - <version>6.0-SNAPSHOT</version> - </dependency> - - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>4.3</version> - <scope>test</scope> - </dependency> - - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-api</artifactId> - <version>1.5.10</version> - </dependency> - - <dependency> - <groupId>ch.qos.logback</groupId> - <artifactId>logback-core</artifactId> - <version>0.9.18</version> - <scope>test</scope> - </dependency> - - <dependency> - <groupId>ch.qos.logback</groupId> - <artifactId>logback-classic</artifactId> - <version>0.9.18</version> - <scope>test</scope> - </dependency> - - </dependencies> - - <repositories> - <repository> - <id>apache-snapshot</id> - <url>https://repository.apache.org/content/repositories/snapshots</url> - <snapshots> - <enabled>true</enabled> - </snapshots> - </repository> - </repositories> - - <distributionManagement> - <site> - <id>apache.website</id> - <name>Apache Commons Site</name> - <url>${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/${commons.componentid}</url> - </site> - </distributionManagement> - - + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.commons.classscan</groupId> + <artifactId>classscan-parent</artifactId> + <version>0.1-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + + <groupId>org.apache.commons.classscan</groupId> + <artifactId>classscan-impl-refl</artifactId> + <name>Class Scan Reflection impl</name> + + <scm> + <connection>scm:svn:http://svn.apache.org/repos/asf/commons/${commons.subproject.location}</connection> + <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/${commons.subproject.location}</developerConnection> + <url>http://svn.apache.org/viewvc/commons/${commons.subproject.location}</url> + </scm> + + <build> + + <plugins> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <argLine>-Xmx512m</argLine> + </configuration> + </plugin> + + </plugins> + + </build> + + <dependencies> + + <dependency> + <groupId>org.apache.bcel</groupId> + <artifactId>bcel</artifactId> + <version>6.0-SNAPSHOT</version> + </dependency> + + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.3</version> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + <version>1.5.10</version> + </dependency> + + <dependency> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-core</artifactId> + <version>0.9.18</version> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> + <version>0.9.18</version> + <scope>test</scope> + </dependency> + + </dependencies> + + <repositories> + <repository> + <id>apache-snapshot</id> + <url>https://repository.apache.org/content/repositories/snapshots</url> + <snapshots> + <enabled>true</enabled> + </snapshots> + </repository> + </repositories> + + <distributionManagement> + <site> + <id>apache.website</id> + <name>Apache Commons Site</name> + <url>${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/${commons.componentid}</url> + </site> + </distributionManagement> + + </project> Propchange: commons/sandbox/classscan/trunk/impl-xbf/ ------------------------------------------------------------------------------ --- svn:ignore (original) +++ svn:ignore Wed Jun 6 07:56:34 2012 @@ -1,4 +1,3 @@ - *.iml *.ipr *.iws Modified: commons/sandbox/classscan/trunk/impl-xbf/pom.xml URL: http://svn.apache.org/viewvc/commons/sandbox/classscan/trunk/impl-xbf/pom.xml?rev=1346769&r1=1346768&r2=1346769&view=diff ============================================================================== --- commons/sandbox/classscan/trunk/impl-xbf/pom.xml (original) +++ commons/sandbox/classscan/trunk/impl-xbf/pom.xml Wed Jun 6 07:56:34 2012 @@ -21,50 +21,49 @@ <!-- $Rev: 432962 $ $Date: 2006-08-20 03:47:39 -0700 (Sun, 20 Aug 2006) $ --> <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> + <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>org.apache</groupId> - <artifactId>apache</artifactId> - <version>10</version> - </parent> + <parent> + <groupId>org.apache.commons.classscan</groupId> + <artifactId>classscan-parent</artifactId> + <version>0.1-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> - <groupId>org.apache.commons</groupId> - <artifactId>commons-finder</artifactId> - <version>0.1-SNAPSHOT</version> - <packaging>jar</packaging> - <name>Apache Commons:: Classpath Resource Finder</name> - <description>Commons Finder helps to find annotations in classes</description> - <dependencies> - <dependency> - <groupId>asm</groupId> - <artifactId>asm</artifactId> - <version>3.2</version> - <scope>provided</scope> - </dependency> - <dependency> - <groupId>asm</groupId> - <artifactId>asm-commons</artifactId> - <version>3.2</version> - <scope>provided</scope> - </dependency> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>4.10</version> - <scope>test</scope> - </dependency> - </dependencies> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <source>1.6</source> - <target>1.6</target> - </configuration> - </plugin> - </plugins> - </build> + <artifactId>commons-classscan-xbf</artifactId> + + <name>Apache Commons:: Classpath Resource Finder</name> + <description>Commons Finder helps to find annotations in classes</description> + <dependencies> + <dependency> + <groupId>asm</groupId> + <artifactId>asm</artifactId> + <version>3.2</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>asm</groupId> + <artifactId>asm-commons</artifactId> + <version>3.2</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.10</version> + <scope>test</scope> + </dependency> + </dependencies> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.6</source> + <target>1.6</target> + </configuration> + </plugin> + </plugins> + </build> </project> Added: commons/sandbox/classscan/trunk/pom.xml URL: http://svn.apache.org/viewvc/commons/sandbox/classscan/trunk/pom.xml?rev=1346769&view=auto ============================================================================== --- commons/sandbox/classscan/trunk/pom.xml (added) +++ commons/sandbox/classscan/trunk/pom.xml Wed Jun 6 07:56:34 2012 @@ -0,0 +1,77 @@ +<?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/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.commons</groupId> + <artifactId>commons-parent</artifactId> + <version>24</version> + </parent> + + <groupId>org.apache.commons.classscan</groupId> + <artifactId>classscan-parent</artifactId> + <version>0.1-SNAPSHOT</version> + <packaging>pom</packaging> + + <name>Class Scan Parent</name> + <description> + A framework to obtain information about class(es) before the jvm loads the class. + One of the main design goals is to only scan once for a whole server. + </description> + + <properties> + <maven.compile.source>1.5</maven.compile.source> + <maven.compile.target>1.5</maven.compile.target> + <commons.subproject.location>sandbox/classscan/trunk</commons.subproject.location> + </properties> + + <scm> + <connection>scm:svn:http://svn.apache.org/repos/asf/commons/${commons.subproject.location}</connection> + <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/${commons.subproject.location}</developerConnection> + <url>http://svn.apache.org/viewvc/commons/${commons.subproject.location}</url> + </scm> + + <repositories> + <repository> + <id>apache-snapshot</id> + <url>https://repository.apache.org/content/repositories/snapshots</url> + <snapshots> + <enabled>true</enabled> + </snapshots> + </repository> + </repositories> + + <distributionManagement> + <site> + <id>apache.website</id> + <name>Apache Commons Site</name> + <url>${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/${commons.componentid}</url> + </site> + </distributionManagement> + + <modules> + <module>impl-refl</module> + <module>impl-xbf</module> + </modules> + +</project> Propchange: commons/sandbox/classscan/trunk/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native