warbler 2.0.5 → 2.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/pom.xml DELETED
@@ -1,190 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!--
3
-
4
-
5
- DO NOT MODIFIY - GENERATED CODE
6
-
7
-
8
- -->
9
- <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
10
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
11
- <modelVersion>4.0.0</modelVersion>
12
- <groupId>rubygems</groupId>
13
- <artifactId>warbler</artifactId>
14
- <version>2.0.0.dev-SNAPSHOT</version>
15
- <packaging>gem</packaging>
16
- <name>Warbler chirpily constructs .war files of your Rails applications.</name>
17
- <description>Warbler is a gem to make a Java jar or war file out of any Ruby,
18
- Rails, or Rack application. Warbler provides a minimal, flexible, Ruby-like way to
19
- bundle up all of your application files for deployment to a Java environment.</description>
20
- <url>https://github.com/jruby/warbler</url>
21
- <licenses>
22
- <license>
23
- <name>MIT</name>
24
- <url>http://opensource.org/licenses/MIT</url>
25
- <comments>MIT license</comments>
26
- </license>
27
- </licenses>
28
- <developers>
29
- <developer>
30
- <name>Nick Sieger</name>
31
- <email>nick@nicksieger.com</email>
32
- </developer>
33
- </developers>
34
- <scm>
35
- <connection>https://github.com/jruby/warbler.git</connection>
36
- <url>https://github.com/jruby/warbler</url>
37
- </scm>
38
- <properties>
39
- <jruby.plugins.version>1.1.3</jruby.plugins.version>
40
- </properties>
41
- <dependencies>
42
- <dependency>
43
- <groupId>rubygems</groupId>
44
- <artifactId>rake</artifactId>
45
- <version>[10.1.0,)</version>
46
- <type>gem</type>
47
- </dependency>
48
- <dependency>
49
- <groupId>rubygems</groupId>
50
- <artifactId>jruby-jars</artifactId>
51
- <version>[9.0.0.0,)</version>
52
- <type>gem</type>
53
- </dependency>
54
- <dependency>
55
- <groupId>rubygems</groupId>
56
- <artifactId>jruby-rack</artifactId>
57
- <version>[1.1.1,1.3)</version>
58
- <type>gem</type>
59
- </dependency>
60
- <dependency>
61
- <groupId>rubygems</groupId>
62
- <artifactId>rubyzip</artifactId>
63
- <version>[1.0,1.2)</version>
64
- <type>gem</type>
65
- </dependency>
66
- <dependency>
67
- <groupId>rubygems</groupId>
68
- <artifactId>jbundler</artifactId>
69
- <version>[0.5.5,0.5.99999]</version>
70
- <type>gem</type>
71
- <scope>test</scope>
72
- </dependency>
73
- <dependency>
74
- <groupId>rubygems</groupId>
75
- <artifactId>ruby-maven</artifactId>
76
- <version>[3.1.1.0,3.1.1.99999]</version>
77
- <type>gem</type>
78
- <scope>test</scope>
79
- </dependency>
80
- <dependency>
81
- <groupId>rubygems</groupId>
82
- <artifactId>rspec</artifactId>
83
- <version>[2.10,2.99999]</version>
84
- <type>gem</type>
85
- <scope>test</scope>
86
- </dependency>
87
- <dependency>
88
- <groupId>rubygems</groupId>
89
- <artifactId>rdoc</artifactId>
90
- <version>[2.4.2,)</version>
91
- <type>gem</type>
92
- <scope>test</scope>
93
- </dependency>
94
- <dependency>
95
- <groupId>org.jruby</groupId>
96
- <artifactId>jruby</artifactId>
97
- <version>1.7.8</version>
98
- <scope>provided</scope>
99
- </dependency>
100
- <dependency>
101
- <groupId>org.eclipse.jetty</groupId>
102
- <artifactId>jetty-webapp</artifactId>
103
- <version>9.2.10.v20150310</version>
104
- <scope>provided</scope>
105
- </dependency>
106
- </dependencies>
107
- <repositories>
108
- <repository>
109
- <id>rubygems-releases</id>
110
- <url>http://rubygems-proxy.torquebox.org/releases</url>
111
- </repository>
112
- </repositories>
113
- <build>
114
- <sourceDirectory>ext</sourceDirectory>
115
- <extensions>
116
- <extension>
117
- <groupId>de.saumya.mojo</groupId>
118
- <artifactId>gem-with-jar-extension</artifactId>
119
- <version>${jruby.plugins.version}</version>
120
- </extension>
121
- </extensions>
122
- <directory>${basedir}/pkg</directory>
123
- <plugins>
124
- <plugin>
125
- <artifactId>maven-jar-plugin</artifactId>
126
- <version>2.4</version>
127
- <executions>
128
- <execution>
129
- <phase>prepare-package</phase>
130
- <goals>
131
- <goal>jar</goal>
132
- </goals>
133
- </execution>
134
- </executions>
135
- <configuration>
136
- <outputDirectory>lib</outputDirectory>
137
- <finalName>warbler_jar</finalName>
138
- </configuration>
139
- </plugin>
140
- <plugin>
141
- <artifactId>maven-clean-plugin</artifactId>
142
- <version>2.4</version>
143
- <configuration>
144
- <filesets>
145
- <fileset>
146
- <directory>lib</directory>
147
- <includes>
148
- <include>warbler_jar.jar</include>
149
- <include>*/**/*.jar</include>
150
- </includes>
151
- </fileset>
152
- </filesets>
153
- </configuration>
154
- </plugin>
155
- <plugin>
156
- <groupId>de.saumya.mojo</groupId>
157
- <artifactId>gem-maven-plugin</artifactId>
158
- <version>${jruby.plugins.version}</version>
159
- <configuration>
160
- <gemspec>warbler.gemspec</gemspec>
161
- </configuration>
162
- </plugin>
163
- <plugin>
164
- <artifactId>maven-compiler-plugin</artifactId>
165
- <version>3.1</version>
166
- <configuration>
167
- <source>1.5</source>
168
- <target>1.5</target>
169
- </configuration>
170
- </plugin>
171
- <plugin>
172
- <artifactId>maven-invoker-plugin</artifactId>
173
- <version>1.8</version>
174
- <executions>
175
- <execution>
176
- <id>integration-test</id>
177
- <goals>
178
- <goal>install</goal>
179
- <goal>run</goal>
180
- </goals>
181
- <configuration>
182
- <projectsDirectory>integration</projectsDirectory>
183
- <streamLogs>true</streamLogs>
184
- </configuration>
185
- </execution>
186
- </executions>
187
- </plugin>
188
- </plugins>
189
- </build>
190
- </project>