Skip to content
This repository has been archived by the owner on Aug 2, 2019. It is now read-only.

Commit

Permalink
v1.0.2: Replaced embedded libraries with single patched class
Browse files Browse the repository at this point in the history
  • Loading branch information
Aivean committed Jul 18, 2015
1 parent fa9108c commit 44b2104
Show file tree
Hide file tree
Showing 6 changed files with 800 additions and 25 deletions.
Binary file removed lib/procyon-compilertools-0.5.29.jar
Binary file not shown.
Binary file removed lib/procyon-core-0.5.29.jar
Binary file not shown.
Binary file removed lib/procyon-decompiler-0.5.29.jar
Binary file not shown.
31 changes: 6 additions & 25 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.scalatojava</groupId>
<artifactId>scala-to-java</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>

<packaging>jar</packaging>
<properties>
Expand Down Expand Up @@ -43,31 +43,10 @@
<artifactId>scala-reflect</artifactId>
<version>${scala.version}</version>
</dependency>
<!--<dependency>-->
<!--<groupId>org.bitbucket.mstrobel</groupId>-->
<!--<artifactId>procyon-compilertools</artifactId>-->
<!--<version>0.5.29</version>-->
<!--</dependency>-->
<dependency>
<groupId>org.bitbucket.mstrobel</groupId>
<artifactId>procyon-compilertools</artifactId>
<version>0.5.29</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/procyon-compilertools-0.5.29.jar</systemPath>
</dependency>
<dependency>
<groupId>org.bitbucket.mstrobel</groupId>
<artifactId>procyon-core</artifactId>
<version>0.5.29</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/procyon-core-0.5.29.jar</systemPath>
</dependency>
<dependency>
<groupId>org.bitbucket.mstrobel</groupId>
<artifactId>procyon-decompiler</artifactId>
<version>0.5.29</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/procyon-decompiler-0.5.29.jar</systemPath>
</dependency>
<dependency>
<groupId>org.scalatest</groupId>
Expand Down Expand Up @@ -155,9 +134,11 @@
<mainClass>com.github.scalatojava.Main</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<descriptors>
<descriptor>
src/assembly/jar-with-dependencies-override.xml
</descriptor>
</descriptors>
<finalName>scala-to-java</finalName>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
Expand Down
25 changes: 25 additions & 0 deletions src/assembly/jar-with-dependencies-override.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3
http://maven.apache.org/xsd/assembly-1.1.3.xsd">
<id>jar-with-dependencies-override</id>
<formats>
<format>jar</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<dependencySets>
<dependencySet>
<outputDirectory>/</outputDirectory>
<useProjectArtifact>true</useProjectArtifact>
<unpack>true</unpack>
<scope>runtime</scope>
</dependencySet>
</dependencySets>
<fileSets>
<fileSet>
<directory>${project.build.directory}/classes</directory>
<outputDirectory>/</outputDirectory>
</fileSet>
</fileSets>
</assembly>
Loading

0 comments on commit 44b2104

Please sign in to comment.