2
0
Эх сурвалжийг харах

Migrated samples-attributes to Maven

Carlos Sanchez 21 жил өмнө
parent
commit
89d6dbf7b6

+ 2 - 0
.classpath

@@ -2,6 +2,8 @@
 <classpath>
 	<classpathentry kind="src" path="samples/attributes/src/main/java"/>
 	<classpathentry kind="src" path="adapters/catalina/src/main/resources"/>
+	<classpathentry kind="src" path="samples/attributes/src/main/resources"/>
+	<classpathentry kind="src" path="samples/attributes/src/test/java"/>
 	<classpathentry kind="src" path="adapters/cas/src/test/resources"/>
 	<classpathentry kind="src" path="adapters/cas/src/main/resources"/>
 	<classpathentry kind="src" path="core/src/main/resources"/>

+ 27 - 0
samples/attributes/project.xml

@@ -0,0 +1,27 @@
+<project>
+    <extend>${basedir}/../project.xml</extend>
+    <artifactId>acegi-sample-attributes</artifactId>
+    <name>Acegi Security System for Spring - Attributes sample</name>
+    <dependencies>
+        <dependency>
+            <groupId>commons-attributes</groupId>
+            <artifactId>commons-attributes-compiler</artifactId>
+            <version>2.1</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-attributes</groupId>
+            <artifactId>commons-attributes-api</artifactId>
+            <version>2.1</version>
+        </dependency>
+        <dependency>
+            <groupId>xjavadoc</groupId>
+            <artifactId>xjavadoc</artifactId>
+            <version>1.0</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-collections</groupId>
+            <artifactId>commons-collections</artifactId>
+            <version>3.1</version>
+        </dependency>
+    </dependencies>
+</project>

+ 0 - 0
samples/attributes/src/applicationContext.xml → samples/attributes/src/main/resources/applicationContext.xml


+ 0 - 0
samples/attributes/src/main/java/sample/attributes/BankTests.java → samples/attributes/src/test/java/sample/attributes/BankTests.java


+ 14 - 0
samples/project.xml

@@ -0,0 +1,14 @@
+<project>
+    <extend>${basedir}/../project.xml</extend>
+    <dependencies>
+        <dependency>
+            <groupId>acegi</groupId>
+            <artifactId>acegi-security</artifactId>
+            <version>0.7-SNAPSHOT</version>
+            <url>http://acegisecurity.sourceforge.net</url>
+            <properties>
+                <war.bundle>true</war.bundle>
+            </properties>
+        </dependency>
+    </dependencies>
+</project>