Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use <dependencyManagement> for junit. Updated other deps. #867

Merged
merged 1 commit into from Jul 11, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 4 additions & 6 deletions core/pom.xml
Expand Up @@ -36,8 +36,6 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jruby.joni</groupId>
Expand Down Expand Up @@ -90,7 +88,7 @@
<dependency>
<groupId>com.github.jnr</groupId>
<artifactId>jffi</artifactId>
<version>1.2.5</version>
<version>1.2.7</version>
<type>jar</type>
</dependency>
<dependency>
Expand All @@ -102,7 +100,7 @@
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.11</version>
<version>1.12</version>
<type>jar</type>
</dependency>
<dependency>
Expand All @@ -120,14 +118,14 @@
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<version>4.3.1</version>
<version>5.0.0</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.8.4</version>
<version>1.9.1</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
Expand Down
6 changes: 2 additions & 4 deletions ext/openssl/pom.xml
Expand Up @@ -24,20 +24,18 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<version>1.47</version>
<version>1.48</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>1.47</version>
<version>1.48</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
Expand Down
2 changes: 0 additions & 2 deletions ext/readline/pom.xml
Expand Up @@ -22,8 +22,6 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jruby</groupId>
Expand Down
11 changes: 11 additions & 0 deletions pom.xml
Expand Up @@ -130,6 +130,17 @@
</plugins>
</build>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>

<profiles>
<profile>
<id>docs</id>
Expand Down