Skip to content

Commit

Permalink
added json to source attach
Browse files Browse the repository at this point in the history
  • Loading branch information
nbauma109 committed May 9, 2024
1 parent 1285420 commit 3167c83
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Bundle-RequiredExecutionEnvironment: JavaSE-17
Bundle-ActivationPolicy: lazy
Bundle-Vendor: ECD Project Team
Bundle-ClassPath: target/lib/commons-io.jar,
target/lib/json.jar,
.
Export-Package: org.sf.feeling.decompiler.source.attach,
org.sf.feeling.decompiler.source.attach.attacher,
Expand Down
10 changes: 10 additions & 0 deletions org.sf.feeling.decompiler.source.attach/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@
<configuration>
<outputDirectory>target/lib</outputDirectory>
<artifactItems>
<artifactItem>
<groupId>com.eclipsesource.minimal-json</groupId>
<artifactId>minimal-json</artifactId>
<overWrite>true</overWrite>
<destFileName>json.jar</destFileName>
</artifactItem>
<artifactItem>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
Expand All @@ -44,6 +50,10 @@
</build>

<dependencies>
<dependency>
<groupId>com.eclipsesource.minimal-json</groupId>
<artifactId>minimal-json</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
Expand Down

0 comments on commit 3167c83

Please sign in to comment.