Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Y
YCSB
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Adnan Ahmad
YCSB
Commits
d56953c8
Commit
d56953c8
authored
8 years ago
by
Kevin Risden
Browse files
Options
Downloads
Patches
Plain Diff
[solr] Skip Solr 5.x tests with JDK 9
parent
d47d4d81
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
solr/pom.xml
+29
-24
29 additions, 24 deletions
solr/pom.xml
with
29 additions
and
24 deletions
solr/pom.xml
+
29
−
24
View file @
d56953c8
...
...
@@ -18,31 +18,36 @@ LICENSE file.
-->
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<parent>
<groupId>
com.yahoo.ycsb
</groupId>
<artifactId>
binding-parent
</artifactId>
<version>
0.12.0-SNAPSHOT
</version>
<relativePath>
../binding-parent
</relativePath>
</parent>
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<parent>
<groupId>
com.yahoo.ycsb
</groupId>
<artifactId>
binding-parent
</artifactId>
<version>
0.12.0-SNAPSHOT
</version>
<relativePath>
../binding-parent
</relativePath>
</parent>
<artifactId>
solr-binding
</artifactId>
<name>
Solr Binding
</name>
<packaging>
jar
</packaging>
<artifactId>
solr-binding
</artifactId>
<name>
Solr Binding
</name>
<packaging>
jar
</packaging>
<dependencies>
<dependency>
<groupId>
com.yahoo.ycsb
</groupId>
<artifactId>
core
</artifactId>
<version>
${project.version}
</version>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
org.apache.solr
</groupId>
<artifactId>
solr-solrj
</artifactId>
<version>
${solr.version}
</version>
</dependency>
<properties>
<!-- Tests do not run on jdk9 -->
<skipJDK9Tests>
true
</skipJDK9Tests>
</properties>
<dependencies>
<dependency>
<groupId>
com.yahoo.ycsb
</groupId>
<artifactId>
core
</artifactId>
<version>
${project.version}
</version>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
org.apache.solr
</groupId>
<artifactId>
solr-solrj
</artifactId>
<version>
${solr.version}
</version>
</dependency>
<dependency>
<groupId>
org.slf4j
</groupId>
<artifactId>
slf4j-log4j12
</artifactId>
...
...
@@ -55,5 +60,5 @@ LICENSE file.
<version>
${solr.version}
</version>
<scope>
test
</scope>
</dependency>
</dependencies>
</dependencies>
</project>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment