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

feature: add support for Jar files analysis with JarLauncher (decompile then build AST with spoon) #2455

Merged
merged 28 commits into from
Sep 27, 2018
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
0d7c009
refactor(MavenLauncher)
nharrand Sep 3, 2018
8c4037d
merge
nharrand Sep 3, 2018
c09c060
vanity
nharrand Sep 4, 2018
7a2fd36
removes parameter m2repository as it has become useless
nharrand Sep 4, 2018
2e88419
override last modified date when classpath is evaluated but has not c…
nharrand Sep 4, 2018
ee3fd53
doc(MavenLauncher)
nharrand Sep 4, 2018
0932e53
untrack .tmp files and cosmetic
nharrand Sep 4, 2018
11ca5a0
fixes a bug when compiler plugin exist but has no configuration child…
nharrand Sep 4, 2018
1a43b2d
fixes a bug which made InheritanceModel incorectly read properties co…
nharrand Sep 4, 2018
c974268
re add deprecated MavenLauncher constructor and add a forceRefresh op…
nharrand Sep 4, 2018
178bb9d
style
nharrand Sep 5, 2018
1567cf5
Merge branch 'master' of https://github.com/INRIA/spoon
nharrand Sep 7, 2018
ad5414b
JarLauncher poc
nharrand Sep 7, 2018
545ca73
update licenses
nharrand Sep 10, 2018
4bdeddc
add a local repository for cfr
nharrand Sep 10, 2018
a1f72de
wip
nharrand Sep 10, 2018
3440581
Refactoring(InheritanceModel, MavenLauncher)
nharrand Sep 10, 2018
d538953
merge
nharrand Sep 12, 2018
d39d2db
merge
nharrand Sep 20, 2018
c456307
merge upstream
nharrand Sep 20, 2018
6227699
small fixes, remove local jar as it is deployed on inria maven repo
nharrand Sep 20, 2018
2c68b52
add triskell repo to pom
nharrand Sep 20, 2018
a9457f2
Activate LarLauncherTest
nharrand Sep 20, 2018
7bd26e4
merge
nharrand Sep 21, 2018
0e6c5eb
add documentation
nharrand Sep 21, 2018
9b75b4d
@Experimental everywhere!
nharrand Sep 21, 2018
4ddfb79
dependency scope = provided for dirty cfr
monperrus Sep 21, 2018
92e6602
Update pom.xml
monperrus Sep 27, 2018
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
add triskell repo to pom
  • Loading branch information
nharrand committed Sep 20, 2018
commit 2c68b526a8c319b44a5fcd7345cb429587f4fa7b
8 changes: 7 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -204,13 +204,19 @@
</site>
</distributionManagement>

<!-- This repository is actually needed for revapi to compare against the last Spoon Snapshot -->
<repositories>
<!-- This repository is actually needed for revapi to compare against the last Spoon Snapshot -->
<repository>
<id>maven.inria.fr-snapshot</id>
<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