Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
moving decompiler dependencies
  • Loading branch information
nharrand committed Nov 15, 2018
commit 19640c51a984c4738b508d9e10896c2a50e17ecf
13 changes: 0 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,19 +48,6 @@ CtClass l = Launcher.parseClass("class A { void m() { System.out.println(\"yeah\

Some examples about the usage of Spoon can be found on [spoon-examples](https://github.com/SpoonLabs/spoon-examples).

:warning: We introduced in Spoon 7.1.0 an external dependency that is not available on Maven Central.
In order to use it properly, please add also the following repository in your pom:

```
<repositories>
<repository>
<id>inria</id>
<name>triskell-public-release</name>
<url>http://maven.inria.fr/artifactory/triskell-public-release</url>
</repository>
</repositories>
```


## Contributing in 2 seconds

Expand Down
2 changes: 1 addition & 1 deletion chore/travis/travis-coverage.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# This script computes and publish (through coveralls) the coverage of Spoon
# It is meant to berun on TravisCI
# It is meant to be run on TravisCI
#
# Note thet Coveralls/Jacoco does not work on JDK9, see https://github.com/trautonen/coveralls-maven-plugin/issues/112

Expand Down
19 changes: 0 additions & 19 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -211,12 +211,6 @@
<name>Maven Repository for Spoon Snapshots</name>
<url>http://maven.inria.fr/artifactory/spoon-public-snapshot</url>
</repository>
<!-- This repository is needed for cfr -->
<repository>
<id>inria</id>
<name>triskell-public-release</name>
<url>http://maven.inria.fr/artifactory/triskell-public-release</url>
</repository>
</repositories>

<dependencies>
Expand Down Expand Up @@ -309,24 +303,11 @@
</exclusion>
</exclusions>
</dependency>
<!-- https://mvnrepository.com/artifact/org.jboss.windup.decompiler.fernflower/fernflower -->
<dependency>
<groupId>org.jboss.windup.decompiler.fernflower</groupId>
<artifactId>fernflower</artifactId>
<version>2.5.0.Final</version>
</dependency>
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-invoker</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<!-- released on maven.inria.fr -->
<groupId>org.benf</groupId>
<artifactId>cfr</artifactId>
<!-- 0.132 is the version of July 2018 -->
<version>0.132.0</version>
</dependency>
</dependencies>

<build>
Expand Down
6 changes: 6 additions & 0 deletions spoon-bytecode/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,12 @@
<version>4.12</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.jboss.windup.decompiler.fernflower/fernflower -->
<dependency>
<groupId>org.jboss.windup.decompiler.fernflower</groupId>
<artifactId>fernflower</artifactId>
<version>2.5.0.Final</version>
</dependency>
<dependency>
<!-- released on maven.inria.fr -->
<groupId>org.benf</groupId>
Expand Down