mirror of https://github.com/jenkinsci/jenkins.git
switching to retrotranslator.
git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@983 71c3de6d-444a-0410-be80-ed276b4c234a
This commit is contained in:
parent
76e9df1135
commit
fbd67442f1
25
core/pom.xml
25
core/pom.xml
|
|
@ -28,6 +28,25 @@
|
|||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>retrotranslator-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>process-classes</phase>
|
||||
<goals>
|
||||
<goal>translate</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<includes>
|
||||
<include>
|
||||
<directory>target/classes</directory>
|
||||
</include>
|
||||
</includes>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<executions>
|
||||
|
|
@ -38,6 +57,7 @@
|
|||
<property name="build.version" value="${version}"/><!-- default to release version -->
|
||||
<!-- put the version file -->
|
||||
<echo message="The build id is: ${build.version}" />
|
||||
<mkdir dir="target/classes/hudson"/>
|
||||
<echo file="target/classes/hudson/hudson-version.properties"
|
||||
>version=${build.version}
|
||||
</echo>
|
||||
|
|
@ -53,6 +73,11 @@
|
|||
</build>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>net.sf.retrotranslator</groupId>
|
||||
<artifactId>retrotranslator-runtime</artifactId>
|
||||
<version>1.0.8</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.kohsuke.stapler</groupId>
|
||||
<artifactId>stapler</artifactId>
|
||||
|
|
|
|||
Loading…
Reference in New Issue