Skip to content

Commit 90a0954

Browse files
committed
Fix outdated/missing spring-related references, use 9.0.0 target
1 parent 4ccb6a5 commit 90a0954

2 files changed

Lines changed: 25 additions & 6 deletions

File tree

pom.xml

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@
1919
<packaging>atlassian-plugin</packaging>
2020

2121
<properties>
22-
<!-- Note: change to 7.1.1 for local testing using `atlas-*` commands due to icu4j init errors in earlier Bamboo
23-
versions when using recent Java 8 versions -->
24-
<bamboo.version>7.1.1</bamboo.version>
22+
<bamboo.version>9.0.0</bamboo.version>
2523
<bamboo.data.version>${bamboo.version}</bamboo.data.version>
2624
<amps.version>8.1.2</amps.version>
2725
<plugin.testrunner.version>2.0.2</plugin.testrunner.version>
@@ -48,13 +46,15 @@
4846

4947
<!-- test dependencies -->
5048
<dependency>
49+
<!-- TODO - update (?) -->
5150
<groupId>junit</groupId>
5251
<artifactId>junit</artifactId>
5352
<version>${junit-version}</version>
5453
<scope>test</scope>
5554
</dependency>
5655

5756
<dependency>
57+
<!-- TODO - update (?) -->
5858
<groupId>com.atlassian.bamboo</groupId>
5959
<artifactId>atlassian-bamboo-web</artifactId>
6060
<version>${bamboo.version}</version>
@@ -63,12 +63,14 @@
6363

6464
<!-- https://mvnrepository.com/artifact/org.apache.ant/ant -->
6565
<dependency>
66+
<!-- TODO - update -->
6667
<groupId>org.apache.ant</groupId>
6768
<artifactId>ant</artifactId>
6869
<version>1.8.2</version>
6970
</dependency>
7071

7172
<dependency>
73+
<!-- TODO - update -->
7274
<groupId>com.google.code.gson</groupId>
7375
<artifactId>gson</artifactId>
7476
<version>2.2.2-atlassian-1</version>
@@ -136,6 +138,23 @@
136138
<enableQuickReload>true</enableQuickReload>
137139
</configuration>
138140
</plugin>
141+
142+
<plugin>
143+
<groupId>com.atlassian.plugin</groupId>
144+
<artifactId>atlassian-spring-scanner-maven-plugin</artifactId>
145+
<version>${atlassian.spring.scanner.version}</version>
146+
<executions>
147+
<execution>
148+
<goals>
149+
<goal>atlassian-spring-scanner</goal>
150+
</goals>
151+
<phase>process-classes</phase>
152+
</execution>
153+
</executions>
154+
<configuration>
155+
<verbose>false</verbose>
156+
</configuration>
157+
</plugin>
139158
</plugins>
140159
</build>
141160

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<beans xmlns="http://www.springframework.org/schema/beans"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xmlns:atlassian-scanner="http://www.atlassian.com/schema/atlassian-scanner"
4+
xmlns:atlassian-scanner="http://www.atlassian.com/schema/atlassian-scanner/2"
55
xsi:schemaLocation="http://www.springframework.org/schema/beans
6-
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
6+
http://www.springframework.org/schema/beans/spring-beans.xsd
77
http://www.atlassian.com/schema/atlassian-scanner
88
http://www.atlassian.com/schema/atlassian-scanner/atlassian-scanner.xsd">
99
<atlassian-scanner:scan-indexes/>
10-
</beans>
10+
</beans>

0 commit comments

Comments
 (0)