-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR fixes the build for project javassist following the upstream respository. --------- Signed-off-by: Arthur Chan <[email protected]>
- Loading branch information
1 parent
d647580
commit 7b50b80
Showing
3 changed files
with
24 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,28 @@ | ||
diff --git a/pom.xml b/pom.xml | ||
index a604e16..52c8a7b 100644 | ||
index d13fee2..4157d4f 100644 | ||
--- a/pom.xml | ||
+++ b/pom.xml | ||
@@ -138,8 +138,8 @@ | ||
</snapshotRepository> | ||
</distributionManagement> | ||
@@ -155,11 +155,11 @@ | ||
</dependencies> | ||
|
||
<build> | ||
- <sourceDirectory>src/main/</sourceDirectory> | ||
- <testSourceDirectory>src/test/</testSourceDirectory> | ||
+ <sourceDirectory>src/main/java/</sourceDirectory> | ||
+ <testSourceDirectory>src/test/java/</testSourceDirectory> | ||
+ <sourceDirectory>src/main/java</sourceDirectory> | ||
+ <testSourceDirectory>src/test/java</testSourceDirectory> | ||
<testResources> | ||
<testResource> | ||
<directory>src/test/resources</directory> | ||
- <directory>src/test/resources</directory> | ||
+ <directory>src/test/java/resources</directory> | ||
</testResource> | ||
</testResources> | ||
<plugins> | ||
@@ -200,7 +200,7 @@ | ||
<mainClass>javassist.CtClass</mainClass> | ||
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> | ||
</manifest> | ||
- <manifestFile>src/main/META-INF/MANIFEST.MF</manifestFile> | ||
+ <manifestFile>src/main/java/META-INF/MANIFEST.MF</manifestFile> | ||
</archive> | ||
</configuration> | ||
</plugin> |