Ignore:
Timestamp:
2024-08-28T20:42:06+02:00 (6 months ago)
Author:
taylor.smock
Message:

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:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/dataimport/pom.xml

    r36282 r36325  
    55        <groupId>org.openstreetmap.josm.plugins</groupId>
    66        <artifactId>plugin-root</artifactId>
    7         <version>1.0-SNAPSHOT</version>
     7        <version>SNAPSHOT</version>
    88    </parent>
    99    <artifactId>dataimport</artifactId>
     
    2727            <groupId>org.openstreetmap.josm.plugins</groupId>
    2828            <artifactId>jaxb</artifactId>
    29             <version>1.0-SNAPSHOT</version>
     29            <version>SNAPSHOT</version>
    3030            <scope>provided</scope>
    3131        </dependency>
     
    4343                        </manifestEntries>
    4444                    </archive>
     45                </configuration>
     46            </plugin>
     47            <plugin>
     48                <groupId>org.apache.maven.plugins</groupId>
     49                <artifactId>maven-clean-plugin</artifactId>
     50                <configuration>
     51                    <filesets>
     52                        <fileset>
     53                            <!-- Only needed while we keep ant scripts around -->
     54                            <directory>src/org/openstreetmap/josm/plugins/dataimport/io/tcx</directory>
     55                        </fileset>
     56                    </filesets>
    4557                </configuration>
    4658            </plugin>
Note: See TracChangeset for help on using the changeset viewer.