Ignore:
Timestamp:
2024-08-28T20:42:06+02:00 (5 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/routes/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>routes</artifactId>
     
    2626            <groupId>org.openstreetmap.josm.plugins</groupId>
    2727            <artifactId>jaxb</artifactId>
    28             <version>1.0-SNAPSHOT</version>
     28            <version>SNAPSHOT</version>
    2929            <scope>provided</scope>
    3030        </dependency>
     
    6262                </configuration>
    6363            </plugin>
     64            <plugin>
     65                <groupId>org.apache.maven.plugins</groupId>
     66                <artifactId>maven-clean-plugin</artifactId>
     67                <configuration>
     68                    <filesets>
     69                        <fileset>
     70                            <!-- Only needed while we keep ant scripts around -->
     71                            <directory>src/org/openstreetmap/josm/plugins/routes/xml</directory>
     72                        </fileset>
     73                    </filesets>
     74                </configuration>
     75            </plugin>
    6476        </plugins>
    6577    </build>
Note: See TracChangeset for help on using the changeset viewer.