Skip to content

Commit 6eabe82

Browse files
committed
Add optional javax.money dependency
Add an optional dependency to `javax.money` to Eclipse errors in `WebConversionService`. See gh-5523 See gh-11402
1 parent 7d60d02 commit 6eabe82

File tree

2 files changed

+13
-2
lines changed
  • spring-boot-project

2 files changed

+13
-2
lines changed

spring-boot-project/spring-boot-autoconfigure/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,11 @@
121121
<artifactId>javax.json.bind-api</artifactId>
122122
<optional>true</optional>
123123
</dependency>
124+
<dependency>
125+
<groupId>javax.money</groupId>
126+
<artifactId>money-api</artifactId>
127+
<optional>true</optional>
128+
</dependency>
124129
<dependency>
125130
<groupId>io.searchbox</groupId>
126131
<artifactId>jest</artifactId>

spring-boot-project/spring-boot-dependencies/pom.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@
7777
<javax-cache.version>1.0.0</javax-cache.version>
7878
<javax-jms.version>2.0.1</javax-jms.version>
7979
<javax-mail.version>1.6.0</javax-mail.version>
80+
<javax-money.version>1.0.1</javax-money.version>
8081
<javax-transaction.version>1.2</javax-transaction.version>
8182
<javax-validation.version>2.0.0.Final</javax-validation.version>
8283
<jaxen.version>1.1.6</jaxen.version>
@@ -972,6 +973,11 @@
972973
<artifactId>javax.mail-api</artifactId>
973974
<version>${javax-mail.version}</version>
974975
</dependency>
976+
<dependency>
977+
<groupId>javax.money</groupId>
978+
<artifactId>money-api</artifactId>
979+
<version>${javax-money.version}</version>
980+
</dependency>
975981
<dependency>
976982
<groupId>javax.servlet</groupId>
977983
<artifactId>javax.servlet-api</artifactId>
@@ -1237,8 +1243,8 @@
12371243
<version>${artemis.version}</version>
12381244
<exclusions>
12391245
<exclusion>
1240-
<groupId>commons-logging</groupId>
1241-
<artifactId>commons-logging</artifactId>
1246+
<groupId>commons-logging</groupId>
1247+
<artifactId>commons-logging</artifactId>
12421248
</exclusion>
12431249
</exclusions>
12441250
</dependency>

0 commit comments

Comments
 (0)