[architecturerules] r709 committed - Upload by wagon-svn

0 views
Skip to first unread message

codesite...@google.com

unread,
Sep 9, 2009, 8:22:43 AM9/9/09
to architecture-...@googlegroups.com
Revision: 709
Author: mykola.nickishov
Date: Wed Sep 9 05:18:30 2009
Log: Upload by wagon-svn
http://code.google.com/p/architecturerules/source/detail?r=709

Added:

/maven2/org/architecturerules/architecture-rules/3.0.0-rc1/architecture-rules-3.0.0-rc1.pom

/maven2/org/architecturerules/architecture-rules/3.0.0-rc1/architecture-rules-3.0.0-rc1.pom.md5

/maven2/org/architecturerules/architecture-rules/3.0.0-rc1/architecture-rules-3.0.0-rc1.pom.sha1

=======================================
--- /dev/null
+++
/maven2/org/architecturerules/architecture-rules/3.0.0-rc1/architecture-rules-3.0.0-rc1.pom
Wed Sep 9 05:18:30 2009
@@ -0,0 +1,326 @@
+<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>
+ <artifactId>architecture-rules</artifactId>
+ <packaging>jar</packaging>
+ <version>3.0.0-rc1</version>
+
+ <name>Architecture Rules</name>
+ <inceptionYear>2007 - 2009</inceptionYear>
+
+ <description>
+ Leverages an XML configuration file to test your code's
architecture via unit tests. Able to assert that
+ specific packages do not depend on each other and able to check
for cyclic redundancies among your packages.
+ </description>
+ <parent>
+ <artifactId>architecture-rules-parent</artifactId>
+ <groupId>org.architecturerules</groupId>
+ <version>1</version>
+ </parent>
+ <dependencies>
+ <dependency>
+ <groupId>commons-digester</groupId>
+ <artifactId>commons-digester</artifactId>
+ <version>1.8</version>
+ <exclusions>
+ <exclusion>
+ <groupId>commons-logging</groupId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <version>1.4</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging-api</artifactId>
+ <version>1.1</version>
+ </dependency>
+ <dependency>
+ <groupId>jboss</groupId>
+ <artifactId>javassist</artifactId>
+ <version>3.0</version>
+ </dependency>
+ <dependency>
+ <groupId>jdepend</groupId>
+ <artifactId>jdepend</artifactId>
+ <version>2.9.1</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.5</version>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-core</artifactId>
+ <version>2.5.5</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>SnakeYAML</groupId>
+ <artifactId>SnakeYAML</artifactId>
+ <version>1.2</version>
+ </dependency>
+ </dependencies>
+
+ <reporting>
+
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-install-plugin</artifactId>
+ <configuration>
+ <createChecksum>true</createChecksum>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-checkstyle-plugin</artifactId>
+ <version>2.2</version>
+ <configuration>
+ <configLocation>checkstyle.xml</configLocation>
+ </configuration>
+ </plugin>
+ </plugins>
+ </reporting>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>jalopy-maven-plugin</artifactId>
+ <version>1.0-alpha-1</version>
+ <executions>
+ <execution>
+ <id />
+ <phase>process-classes</phase>
+ <goals>
+ <goal>format</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <fileFormat>UNIX</fileFormat>
+ <convention>${basedir}/jalopy.xml</convention>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>jar</goal>
+ <goal>test-jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-enforcer-plugin</artifactId>
+ <version>1.0-alpha-3</version>
+ <executions>
+ <execution>
+ <phase>validate</phase>
+ <goals>
+ <goal>enforce</goal>
+ </goals>
+ <configuration>
+ <rules>
+ <requireMavenVersion>
+ <!-- some version of maven 2-->
+ <version>[2.0,)</version>
+ </requireMavenVersion>
+ <requireJavaVersion>
+ <!-- java 5 or higher -->
+ <version>[1.5,)</version>
+ </requireJavaVersion>
+ </rules>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-checkstyle-plugin</artifactId>
+ <version>2.2</version>
+ <configuration>
+ <configLocation>checkstyle.xml</configLocation>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>com.google.code.maven-license-plugin</groupId>
+ <artifactId>maven-license-plugin</artifactId>
+ <version>1.3.1</version>
+ <configuration>
+ <header>src/main/resources/file-header.txt</header>
+ <quiet>false</quiet>
+ <excludes>
+ <exclude>**/*.uml</exclude>
+ <exclude>**/*.jpg</exclude>
+ <exclude>**/index.txt</exclude>
+ </excludes>
+ <properties>
+ <year>${project.inceptionYear}</year>
+ <url>${project.url}</url>
+ </properties>
+ </configuration>
+ <executions>
+ <execution>
+ <phase>compile</phase>
+ <goals>
+ <goal>format</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <version>2.0.0</version>
+ <extensions>true</extensions>
+ <executions>
+ <execution>
+ <id>osgi-manifest</id>
+ <phase>process-classes</phase>
+ <goals>
+ <goal>manifest</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
+ </archive>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <repositories>
+ <repository>
+ <id>architecture-rules-repo</id>
+ <name>architecture-rules repository hosted by
code.google.com</name>
+ <url>http://architecturerules.googlecode.com/svn/maven2/</url>
+ <releases>
+ <checksumPolicy>ignore</checksumPolicy>
+ </releases>
+ <snapshots>
+ <checksumPolicy>ignore</checksumPolicy>
+ </snapshots>
+ </repository>
+ <repository>
+ <id>spring</id>
+ <url>
+
https://svn.sourceforge.net/svnroot/springframework/repos/repo
+ </url>
+ <releases>
+ <checksumPolicy>ignore</checksumPolicy>
+ </releases>
+ <snapshots>
+ <checksumPolicy>ignore</checksumPolicy>
+ </snapshots>
+ </repository>
+ <repository>
+ <id>snakeyaml</id>
+ <name>SnakeYAML repository</name>
+ <url>http://snakeyamlrepo.appspot.com/repository</url>
+ </repository>
+ </repositories>
+
+ <pluginRepositories>
+ <pluginRepository>
+ <id>codehaus snapshot repository</id>
+ <url>http://snapshots.repository.codehaus.org</url>
+ <snapshots>
+ <enabled>true</enabled>
+ <updatePolicy>always</updatePolicy>
+ <checksumPolicy>ignore</checksumPolicy>
+ </snapshots>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ </pluginRepository>
+ <pluginRepository>
+ <id>codehaus repository</id>
+ <url>http://maven.codehaus.org/maven2</url>
+ <snapshots>
+ <enabled>true</enabled>
+ <updatePolicy>always</updatePolicy>
+ <checksumPolicy>ignore</checksumPolicy>
+ </snapshots>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ </pluginRepository>
+ <pluginRepository>
+ <id>stat-scm-sourceforge</id>
+ <url>http://stat-scm.sourceforge.net/maven2</url>
+ <snapshots>
+ <enabled>true</enabled>
+ <updatePolicy>always</updatePolicy>
+ <checksumPolicy>ignore</checksumPolicy>
+ </snapshots>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ </pluginRepository>
+ <pluginRepository>
+ <id>stat-scm-sourceforge-snapshot</id>
+ <url>http://stat-scm.sourceforge.net/maven2-snapshots</url>
+ <snapshots>
+ <enabled>true</enabled>
+ <updatePolicy>always</updatePolicy>
+ <checksumPolicy>ignore</checksumPolicy>
+ </snapshots>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ </pluginRepository>
+ <pluginRepository>
+ <id>stat-scm-sourceforge</id>
+ <name>stat-scm Sourceforge Maven 2 repository</name>
+ <url>http://stat-scm.sourceforge.net/maven2</url>
+ </pluginRepository>
+ <pluginRepository>
+ <id>mc-release</id>
+ <name>Local Maven repository of releases</name>
+ <url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ </pluginRepository>
+ </pluginRepositories>
+
+
+ <scm>
+
<connection>scm:svn:http://architecturerules.googlecode.com/svn/tags/architecture-rules-3.0.0-rc1</connection>
+
<developerConnection>scm:svn:https://architecturerules.googlecode.com/svn/tags/architecture-rules-3.0.0-rc1</developerConnection>
+
<url>http://architecturerules.googlecode.com/svn/tags/architecture-rules-3.0.0-rc1</url>
+ </scm>
+</project>
=======================================
--- /dev/null
+++
/maven2/org/architecturerules/architecture-rules/3.0.0-rc1/architecture-rules-3.0.0-rc1.pom.md5
Wed Sep 9 05:18:30 2009
@@ -0,0 +1,1 @@
+75a9763bad910b1d030e02c91edaa108
=======================================
--- /dev/null
+++
/maven2/org/architecturerules/architecture-rules/3.0.0-rc1/architecture-rules-3.0.0-rc1.pom.sha1
Wed Sep 9 05:18:30 2009
@@ -0,0 +1,1 @@
+86c7a9694647ec39cbdaea0641844dec004182fb

Reply all
Reply to author
Forward
0 new messages