source: osm/applications/editors/josm/plugins/opendata/modules/fr.toulouse/pom.xml

Last change on this file was 36325, checked in by taylor.smock, 5 months 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.7 KB
Line 
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>opendata-parent</artifactId>
7 <version>SNAPSHOT</version>
8 </parent>
9 <groupId>org.openstreetmap.josm.plugins.opendata</groupId>
10 <artifactId>fr.toulouse</artifactId>
11 <properties>
12 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13 <plugin.src.dir>src</plugin.src.dir>
14 </properties>
15 <dependencies>
16 <dependency>
17 <groupId>org.openstreetmap.josm.plugins</groupId>
18 <artifactId>apache-commons</artifactId>
19 <version>SNAPSHOT</version>
20 <scope>provided</scope>
21 </dependency>
22 <dependency>
23 <groupId>org.openstreetmap.josm.plugins</groupId>
24 <artifactId>geotools</artifactId>
25 <version>SNAPSHOT</version>
26 <scope>provided</scope>
27 </dependency>
28 <dependency>
29 <groupId>org.openstreetmap.josm.plugins</groupId>
30 <artifactId>opendata</artifactId>
31 <version>SNAPSHOT</version>
32 <scope>provided</scope>
33 </dependency>
34 <dependency>
35 <groupId>org.openstreetmap.josm.plugins</groupId>
36 <artifactId>utilsplugin2</artifactId>
37 <version>SNAPSHOT</version>
38 <scope>provided</scope>
39 </dependency>
40 </dependencies>
41 <build>
42 <plugins>
43 <plugin>
44 <groupId>org.apache.maven.plugins</groupId>
45 <artifactId>maven-jar-plugin</artifactId>
46 <configuration>
47 <archive>
48 <manifestEntries>
49 <Author>Don-vip</Author>
50 <Module-Class>org.openstreetmap.josm.plugins.opendata.modules.fr.toulouse.ToulouseModule</Module-Class>
51 <Module-Date>${version.entry.commit.date}</Module-Date>
52 <Module-Description>Toulouse</Module-Description>
53 <Module-Icon>images/data.fr.toulouse_24.png</Module-Icon>
54 <Module-Link>https://wiki.openstreetmap.org/wiki/Toulouse/ToulouseMetropoleData</Module-Link>
55 <Module-Version>${version.entry.commit.revision}</Module-Version>
56 </manifestEntries>
57 </archive>
58 </configuration>
59 </plugin>
60 </plugins>
61 </build>
62</project>
Note: See TracBrowser for help on using the repository browser.