mrheaumecortex / onejar-maven-plugin

Automatically exported from code.google.com/p/onejar-maven-plugin
0 stars 1 forks source link

Support newer versions of OneJar #30

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
I need to have onejar-maven-plugin to support more versions of OneJar. There 
are a lot of RC's being released by the OneJar project fixing issues I 
experience that are not available in onejar-maven-plugin. Adding these RC jars 
to src/main/resources is sufficient to support these versions.

Original issue reported on code.google.com by bimsc...@gmail.com on 28 Feb 2011 at 10:26

GoogleCodeExporter commented 9 years ago
Issue 32 has been merged into this issue.

Original comment by bwijsmul...@gmail.com on 15 Jan 2012 at 2:45

GoogleCodeExporter commented 9 years ago
I'm working on adding an option to specify a project file path to where your 
custom version of the one-jar boot is. This would allow anyone to use the 
latest and greatest unstable versions as you like.

Original comment by bwijsmul...@gmail.com on 15 Jan 2012 at 2:46

GoogleCodeExporter commented 9 years ago
Added new feature in the latest 1.4.5-SNAPSHOT to set localOneJarTemplate to 
point to a file in the current project that is the onejar-boot file of your 
liking.

Example:
<localOneJarTemplate>onejar/one-jar-RC-whatever.jar</localOneJarTemplate>

The latest snapshot can be tested by adding the right repository to your pom:

<pluginRepositories>
        <pluginRepository>
            <id>onejar-maven-plugin.googlecode.com</id>
            <url>http://onejar-maven-plugin.googlecode.com/svn/mavenrepo-snapshot</url>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
            <releases>
                <enabled>false</enabled>
            </releases>
        </pluginRepository>
    </pluginRepositories>

Original comment by bwijsmul...@gmail.com on 15 Jan 2012 at 3:48