Skip to content

Commit

Permalink
Version 3.0.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
aunkrig committed Sep 19, 2016
1 parent 9e4a92c commit 9c1d4a8
Show file tree
Hide file tree
Showing 8 changed files with 76 additions and 5 deletions.
2 changes: 1 addition & 1 deletion commons-compiler-jdk/pom.xml
Expand Up @@ -8,7 +8,7 @@
<groupId>org.codehaus.janino</groupId>
<artifactId>janino-parent</artifactId>
<relativePath>../janino-parent</relativePath>
<version>3.0.5-SNAPSHOT</version>
<version>3.0.6</version>
</parent>

<artifactId>commons-compiler-jdk</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion commons-compiler-tests/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.codehaus.janino</groupId>
<artifactId>janino-parent</artifactId>
<version>3.0.5-SNAPSHOT</version>
<version>3.0.6</version>
<relativePath>../janino-parent</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion commons-compiler/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.codehaus.janino</groupId>
<artifactId>janino-parent</artifactId>
<version>3.0.5-SNAPSHOT</version>
<version>3.0.6</version>
<relativePath>../janino-parent</relativePath>
</parent>

Expand Down
Empty file.
17 changes: 17 additions & 0 deletions janino-parent/launch/janino-parent mvn deploy.launch
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchConfiguration type="org.eclipse.m2e.Maven2LaunchConfigurationType">
<booleanAttribute key="M2_DEBUG_OUTPUT" value="false"/>
<stringAttribute key="M2_GOALS" value="deploy"/>
<booleanAttribute key="M2_NON_RECURSIVE" value="false"/>
<booleanAttribute key="M2_OFFLINE" value="false"/>
<stringAttribute key="M2_PROFILES" value=""/>
<listAttribute key="M2_PROPERTIES"/>
<stringAttribute key="M2_RUNTIME" value="EMBEDDED"/>
<booleanAttribute key="M2_SKIP_TESTS" value="false"/>
<intAttribute key="M2_THREADS" value="1"/>
<booleanAttribute key="M2_UPDATE_SNAPSHOTS" value="false"/>
<stringAttribute key="M2_USER_SETTINGS" value=""/>
<booleanAttribute key="M2_WORKSPACE_RESOLUTION" value="false"/>
<stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${workspace_loc:/janino-parent}"/>
</launchConfiguration>
36 changes: 35 additions & 1 deletion janino-parent/pom.xml
Expand Up @@ -14,7 +14,7 @@

<groupId>org.codehaus.janino</groupId>
<packaging>pom</packaging>
<version>3.0.5-SNAPSHOT</version>
<version>3.0.6</version>
<dependencyManagement>
<dependencies>
<dependency>
Expand Down Expand Up @@ -51,6 +51,13 @@
<module>../commons-compiler-tests</module>
</modules>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>

<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -139,6 +146,33 @@
<target>1.6</target>
</configuration>
</plugin>

<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<description>Janino is a super-small, super-fast Java compiler.</description>
Expand Down
20 changes: 20 additions & 0 deletions janino/launch/janino-tests.launch
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchConfiguration type="org.eclipse.jdt.junit.launchconfig">
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
<listEntry value="/janino/src/test/java"/>
</listAttribute>
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
<listEntry value="2"/>
</listAttribute>
<stringAttribute key="org.eclipse.jdt.junit.CONTAINER" value="=janino/src\/test\/java"/>
<booleanAttribute key="org.eclipse.jdt.junit.KEEPRUNNING_ATTR" value="false"/>
<stringAttribute key="org.eclipse.jdt.junit.TESTNAME" value=""/>
<stringAttribute key="org.eclipse.jdt.junit.TEST_KIND" value="org.eclipse.jdt.junit.loader.junit4"/>
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_USE_START_ON_FIRST_THREAD" value="true"/>
<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" value="org.eclipse.m2e.launchconfig.classpathProvider"/>
<stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value=""/>
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="janino"/>
<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" value="org.eclipse.m2e.launchconfig.sourcepathProvider"/>
<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-ea"/>
</launchConfiguration>
2 changes: 1 addition & 1 deletion janino/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.codehaus.janino</groupId>
<artifactId>janino-parent</artifactId>
<version>3.0.5-SNAPSHOT</version>
<version>3.0.6</version>
<relativePath>../janino-parent</relativePath>
</parent>

Expand Down

0 comments on commit 9c1d4a8

Please sign in to comment.