Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
c082e31d
Commit
c082e31d
authored
Sep 08, 2017
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add javax.annotation-api dependency to spring-boot-starter
Closes gh-9366
parent
db0c4185
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
pom.xml
spring-boot-dependencies/pom.xml
+6
-0
pom.xml
spring-boot-starters/spring-boot-starter/pom.xml
+4
-0
No files found.
spring-boot-dependencies/pom.xml
View file @
c082e31d
...
...
@@ -97,6 +97,7 @@
<jackson.version>
2.9.1
</jackson.version>
<janino.version>
3.0.7
</janino.version>
<javassist.version>
3.21.0-GA
</javassist.version>
<!-- Same as Hibernate -->
<javax-annotation.version>
1.3
</javax-annotation.version>
<javax-cache.version>
1.0.0
</javax-cache.version>
<javax-jms.version>
2.0.1
</javax-jms.version>
<javax-mail.version>
1.6.0
</javax-mail.version>
...
...
@@ -874,6 +875,11 @@
<artifactId>
undertow-websockets-jsr
</artifactId>
<version>
${undertow.version}
</version>
</dependency>
<dependency>
<groupId>
javax.annotation
</groupId>
<artifactId>
javax.annotation-api
</artifactId>
<version>
${javax-annotation.version}
</version>
</dependency>
<dependency>
<groupId>
javax.cache
</groupId>
<artifactId>
cache-api
</artifactId>
...
...
spring-boot-starters/spring-boot-starter/pom.xml
View file @
c082e31d
...
...
@@ -30,6 +30,10 @@
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-logging
</artifactId>
</dependency>
<dependency>
<groupId>
javax.annotation
</groupId>
<artifactId>
javax.annotation-api
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-core
</artifactId>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment