source: osm/applications/editors/josm/plugins/apache-http/pom.xml@ 36325

Last change on this file since 36325 was 36325, checked in by taylor.smock, 7 weeks ago

See #23875: Use SNAPSHOT instead of 1.0-SNAPSHOT since that is what our scripts currently publish

This should fix the Jenkins build for plugins.

Note: Maven warns that this may break in the future, in which case we'll have to
change our processes.

File size: 2.2 KB
RevLine 
[36282]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>
4 <parent>
5 <groupId>org.openstreetmap.josm.plugins</groupId>
6 <artifactId>plugin-root</artifactId>
[36325]7 <version>SNAPSHOT</version>
[36282]8 </parent>
9 <artifactId>apache-http</artifactId>
10 <developers>
11 <developer>
12 <id>Don-vip</id>
13 </developer>
14 </developers>
15 <properties>
16 <plugin.src.dir>${project.basedir}/src</plugin.src.dir>
17 <plugin.main.version>19044</plugin.main.version>
18 <plugin.author>Don-vip</plugin.author>
19 <plugin.class>org.openstreetmap.josm.plugins.http.HttpPlugin</plugin.class>
20 <plugin.description>Provides Apache HTTP library. Not meant to be installed directly by users, but rather as a dependency for other plugins.</plugin.description>
21 <plugin.requires>apache-commons;jna</plugin.requires>
22 <plugin.stage>15</plugin.stage>
23 </properties>
24 <dependencies>
25 <dependency>
26 <groupId>org.openstreetmap.josm.plugins</groupId>
27 <artifactId>apache-commons</artifactId>
[36325]28 <version>SNAPSHOT</version>
[36282]29 <scope>provided</scope>
30 </dependency>
31 <dependency>
32 <groupId>org.apache.httpcomponents.client5</groupId>
33 <artifactId>httpclient5</artifactId>
34 <version>5.3.1</version>
35 <scope>compile</scope>
36 </dependency>
37 </dependencies>
38 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.apache.maven.plugins</groupId>
42 <artifactId>maven-jar-plugin</artifactId>
43 <configuration>
44 <archive>
45 <manifestEntries>
46 <Plugin-Stage>${plugin.stage}</Plugin-Stage>
47 <Plugin-Requires>${plugin.requires}</Plugin-Requires>
48 </manifestEntries>
49 </archive>
50 </configuration>
51 </plugin>
52 </plugins>
53 </build>
54</project>
Note: See TracBrowser for help on using the repository browser.