Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Edgar2016-04-13 02:23:08 +0000
committerMike Edgar2016-04-15 03:00:35 +0000
commit3b526f863aa154e76ac9d93547ac7a90f6e579e0 (patch)
treec1b2d9e0b0658e72ebcfe27772bfeead03e046ea
parent4812fdab61c1ac61863247574be03425ba3bc674 (diff)
downloadjgit-3b526f863aa154e76ac9d93547ac7a90f6e579e0.tar.gz
jgit-3b526f863aa154e76ac9d93547ac7a90f6e579e0.tar.xz
jgit-3b526f863aa154e76ac9d93547ac7a90f6e579e0.zip
Fix Buck build broken by 4812fda.
Creates a source directory under org.eclipse.jgit.http.test for the new support class. Signed-off-by: Michael Edgar <adgar@google.com> Change-Id: Ie49492c2bbe5c1db96ceb0dc06fa7cb9f927431a
-rw-r--r--org.eclipse.jgit.http.test/pom.xml2
-rw-r--r--org.eclipse.jgit.http.test/src/org/eclipse/jgit/http/test/RefsUnreadableInMemoryRepository.java (renamed from org.eclipse.jgit.http.test/tst/org/eclipse/jgit/http/test/RefsUnreadableInMemoryRepository.java)0
-rw-r--r--pom.xml1
3 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.jgit.http.test/pom.xml b/org.eclipse.jgit.http.test/pom.xml
index 31fda8b242..69ffe4954b 100644
--- a/org.eclipse.jgit.http.test/pom.xml
+++ b/org.eclipse.jgit.http.test/pom.xml
@@ -72,7 +72,6 @@
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit</artifactId>
<version>${project.version}</version>
- <scope>test</scope>
</dependency>
<dependency>
@@ -111,6 +110,7 @@
</dependencies>
<build>
+ <sourceDirectory>src/</sourceDirectory>
<testSourceDirectory>tst/</testSourceDirectory>
<testResources>
diff --git a/org.eclipse.jgit.http.test/tst/org/eclipse/jgit/http/test/RefsUnreadableInMemoryRepository.java b/org.eclipse.jgit.http.test/src/org/eclipse/jgit/http/test/RefsUnreadableInMemoryRepository.java
index 485cced778..485cced778 100644
--- a/org.eclipse.jgit.http.test/tst/org/eclipse/jgit/http/test/RefsUnreadableInMemoryRepository.java
+++ b/org.eclipse.jgit.http.test/src/org/eclipse/jgit/http/test/RefsUnreadableInMemoryRepository.java
diff --git a/pom.xml b/pom.xml
index a691b8ea90..e80d4fb1fe 100644
--- a/pom.xml
+++ b/pom.xml
@@ -453,6 +453,7 @@
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
<quiet>true</quiet>
+ <excludePackageNames>org.eclipse.jgit.http.test</excludePackageNames>
<links>
<link>http://docs.oracle.com/javase/7/docs/api</link>
</links>

Back to the top