forked from leonidv/jruby-maven-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
120 lines (118 loc) · 3.8 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?xml version="1.0" encoding="UTF-8"?>
<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>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>de.saumya.mojo</groupId>
<artifactId>jruby-maven-plugins</artifactId>
<packaging>pom</packaging>
<version>1.0.9-SNAPSHOT</version>
<name>JRuby Maven Mojos</name>
<description>
aggregation project for various jruby related maven plugins
</description>
<url>http://github.com/mkristian/jruby-maven-plugins</url>
<scm>
<connection>scm:git:git://github.com/torquebox/jruby-maven-plugins.git</connection>
<developerConnection>scm:git:ssh://git@github.com/torquebox/jruby-maven-plugins.git</developerConnection>
<url>http://github.com/torquebox/jruby-maven-plugins</url>
</scm>
<licenses>
<license>
<name>MIT</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>mkristian</id>
<name>Christian Meier</name>
<email>m.kristian@web.de</email>
<timezone>IST</timezone>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>sonatype</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<properties>
<root.dir>${basedir}</root.dir>
<gem.home>${root.dir}/target/rubygems</gem.home>
<gem.path>${root.dir}/target/rubygems</gem.path>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<invoker.skip>true</invoker.skip>
<maven.version>3.0.3</maven.version>
<jruby.version>1.7.3</jruby.version>
<jruby.rack.version>1.0.10</jruby.rack.version>
<jetty.version>7.5.1.v20110908</jetty.version>
<war.version>2.1.1</war.version>
<jar.version>2.3.1</jar.version>
<bundler.version>1.1.3</bundler.version>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4.3</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.9</version>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3</version>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.1</version>
</plugin>
</plugins>
</build>
<modules>
<module>parent-mojo</module>
<module>gem-parent-mojo</module>
<module>tests-parent-mojo</module>
<module>jruby-maven-plugin</module>
<module>gem-maven-plugin</module>
<module>rspec-maven-plugin</module>
<module>rails3-maven-plugin</module>
<module>cucumber-maven-plugin</module>
<module>gem-assembly-descriptors</module>
<module>ruby-tools</module>
<module>rake-maven-plugin</module>
<module>runit-maven-plugin</module>
<module>minitest-maven-plugin</module>
<module>bundler-maven-plugin</module>
<module>gem-extension</module>
<module>gem-with-jar-extension</module>
</modules>
</project>