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
cc27a0f2
Commit
cc27a0f2
authored
May 03, 2016
by
Phillip Webb
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5828 from izeye/optional
* pr/5828: Make json-path and selenium-api optional
parents
14d71885
06143195
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
9 deletions
+21
-9
pom.xml
spring-boot-test-autoconfigure/pom.xml
+10
-0
pom.xml
spring-boot-test/pom.xml
+11
-9
No files found.
spring-boot-test-autoconfigure/pom.xml
View file @
cc27a0f2
...
...
@@ -44,6 +44,11 @@
<artifactId>
jackson-databind
</artifactId>
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
com.jayway.jsonpath
</groupId>
<artifactId>
json-path
</artifactId>
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
net.sourceforge.htmlunit
</groupId>
<artifactId>
htmlunit
</artifactId>
...
...
@@ -65,6 +70,11 @@
<artifactId>
htmlunit-driver
</artifactId>
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
org.seleniumhq.selenium
</groupId>
<artifactId>
selenium-api
</artifactId>
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-orm
</artifactId>
...
...
spring-boot-test/pom.xml
View file @
cc27a0f2
...
...
@@ -36,7 +36,12 @@
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
javax.servlet
</groupId>
<groupId>
com.jayway.jsonpath
</groupId>
<artifactId>
json-path
</artifactId>
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
javax.servlet
</groupId>
<artifactId>
javax.servlet-api
</artifactId>
<optional>
true
</optional>
</dependency>
...
...
@@ -80,6 +85,11 @@
<artifactId>
htmlunit-driver
</artifactId>
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
org.seleniumhq.selenium
</groupId>
<artifactId>
selenium-api
</artifactId>
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-test
</artifactId>
...
...
@@ -122,14 +132,6 @@
<optional>
true
</optional>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
com.jayway.jsonpath
</groupId>
<artifactId>
json-path
</artifactId>
</dependency>
<dependency>
<groupId>
org.seleniumhq.selenium
</groupId>
<artifactId>
selenium-api
</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
...
...
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