jberkel / springy

Springy lets you use a simple DSL based on JRuby to wire up your Spring context.

This URL has Read+Write access

springy / pom.xml
2772330f » Jan Berkel 2007-07-31 mavenization of springy (no... 1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
023c8d5b » Jan Berkel 2007-08-01 deploy stuff 4 <groupId>com.trampolinesystems</groupId>
2772330f » Jan Berkel 2007-07-31 mavenization of springy (no... 5 <artifactId>springy</artifactId>
023c8d5b » Jan Berkel 2007-08-01 deploy stuff 6 <packaging>jar</packaging>
7 <version>0.3</version>
fe3d5a12 » Jan Berkel 2007-08-01 dont need config 8 <name>Springy</name>
9 <url>http://code.trampolinesystems.com/springy</url>
2772330f » Jan Berkel 2007-07-31 mavenization of springy (no... 10
11 <build>
12 <plugins>
13 <plugin>
14 <groupId>org.apache.maven.plugins</groupId>
15 <artifactId>maven-compiler-plugin</artifactId>
16 <configuration>
17 <compilerVersion>1.5</compilerVersion>
18 <source>1.5</source>
19 <target>1.5</target>
20 <debug>true</debug>
21 <showDeprecation>true</showDeprecation>
22 <showWarnings>true</showWarnings>
23 <optimize>false</optimize>
24 </configuration>
25 </plugin>
26
27 <plugin>
28 <artifactId>maven-surefire-plugin</artifactId>
29 <version>2.4-SNAPSHOT</version>
30 <configuration>
31 <suiteXmlFiles>
32 <suiteXmlFile>testng.xml</suiteXmlFile>
33 </suiteXmlFiles>
34 </configuration>
35 </plugin>
36 </plugins>
37 </build>
38
39 <dependencies>
40 <dependency>
41 <groupId>org.jruby</groupId>
42 <artifactId>jruby-complete</artifactId>
60a20fae » jberkel 2009-04-23 bump jruby to version 1.2.0 43 <version>1.2.0</version>
2772330f » Jan Berkel 2007-07-31 mavenization of springy (no... 44 </dependency>
45
46 <dependency>
47 <groupId>org.springframework</groupId>
48 <artifactId>spring</artifactId>
4feb4744 » jberkel 2009-02-13 update to jruby 1.1.6 49 <version>2.5.2</version>
2772330f » Jan Berkel 2007-07-31 mavenization of springy (no... 50 </dependency>
51
52 <dependency>
53 <groupId>bsf</groupId>
54 <artifactId>bsf</artifactId>
55 <version>2.4.0</version>
56 </dependency>
57
58 <dependency>
59 <groupId>org.testng</groupId>
60 <artifactId>testng</artifactId>
3a43f749 » Jan Berkel 2007-08-01 springy now builds (needs j... 61 <version>5.5</version>
2772330f » Jan Berkel 2007-07-31 mavenization of springy (no... 62 <classifier>jdk15</classifier>
63 <scope>test</scope>
64 </dependency>
65 </dependencies>
66
67 <pluginRepositories>
68 <pluginRepository>
69 <id>apache.snapshots</id>
70 <url>http://people.apache.org/repo/m2-snapshot-repository/</url>
71 </pluginRepository>
72 </pluginRepositories>
023c8d5b » Jan Berkel 2007-08-01 deploy stuff 73
74 <distributionManagement>
75 <repository>
76 <id>inhouse</id>
77 <name>inhouse release repository</name>
78 <url>scp://trampolinesystems.com:/var/www/code.trampolinesystems.com/maven2_repositories/inhouse</url>
79 </repository>
80 </distributionManagement>
2772330f » Jan Berkel 2007-07-31 mavenization of springy (no... 81 </project>