Skip to content

Commit

Permalink
release 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
llsand committed May 26, 2017
1 parent 648e745 commit 6ccf59a
Show file tree
Hide file tree
Showing 10 changed files with 32 additions and 15 deletions.
2 changes: 1 addition & 1 deletion examples/gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
}
dependencies {
classpath group: 'com.opitzconsulting.orcas', name: 'orcas-gradle-plugin',
version: '2.7.0'
version: '3.0.0'

classpath "com.oracle:ojdbc6:11.1.0.7"

Expand Down
2 changes: 1 addition & 1 deletion examples/gradle_domain_extension/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
}
dependencies {
classpath group: 'com.opitzconsulting.orcas', name: 'orcas-domainextension-gradle-plugin',
version: '2.7.0'
version: '3.0.0'

classpath "com.oracle:ojdbc6:11.1.0.7"

Expand Down
2 changes: 1 addition & 1 deletion examples/maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<plugin>
<groupId>com.opitzconsulting.orcas</groupId>
<artifactId>orcas-maven-plugin</artifactId>
<version>2.7.0</version>
<version>3.0.0</version>
<extensions>true</extensions>

<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions examples/maven_domain_extension/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<plugin>
<groupId>com.opitzconsulting.orcas</groupId>
<artifactId>orcas-maven-plugin</artifactId>
<version>2.7.0</version>
<version>3.0.0</version>
<extensions>true</extensions>


Expand All @@ -25,7 +25,7 @@
<dependency>
<groupId>com.opitzconsulting.orcas</groupId>
<artifactId>orcas-domainextension-main</artifactId>
<version>2.7.0</version>
<version>3.0.0</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion examples/maven_extension_demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<plugin>
<groupId>com.opitzconsulting.orcas</groupId>
<artifactId>orcas-maven-plugin</artifactId>
<version>2.7.0</version>
<version>3.0.0</version>
<extensions>true</extensions>


Expand Down
2 changes: 1 addition & 1 deletion examples/orderentry/db/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</target>

<target name="orcas_initialize" depends="show_location">
<orcas_initialize orcasprebuildversion="com.opitzconsulting.orcas:orcas-main:2.7.0"/>
<orcas_initialize orcasprebuildversion="com.opitzconsulting.orcas:orcas-main:3.0.0"/>
</target>

<target name="build_tables" depends="show_location,orcas_initialize">
Expand Down
2 changes: 1 addition & 1 deletion orcas_core/build_source/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ subprojects
project.ext.xtext_version = "2.5.1"

project.group = "com.opitzconsulting.orcas"
project.version = "2.7.1-SNAPSHOT"
project.version = "3.0.0"

repositories
{
Expand Down
2 changes: 1 addition & 1 deletion orcas_core/release_orcas.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ run this in upload_maven_central:
gradle clean publish

close repository on https://oss.sonatype.org/#stagingRepositories
rlease repository on https://oss.sonatype.org/#stagingRepositories
release repository on https://oss.sonatype.org/#stagingRepositories

change version of examples to released version:
examples/gradle*/build.gradle
Expand Down
2 changes: 1 addition & 1 deletion orcas_core/upload_maven_central/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ project.buildDir = ".gradle/build"
apply from: 'mcupload.gradle'

project.group = "com.opitzconsulting.orcas"
project.version = "2.7.0"
project.version = "3.0.0"

project.ext.mcupload.publish("orcas-db-objects")
project.ext.mcupload.publish("orcas-orig")
Expand Down
27 changes: 22 additions & 5 deletions orcas_maven_plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.opitzconsulting.orcas</groupId>
<artifactId>orcas-maven-plugin</artifactId>
<version>2.7.1-SNAPSHOT</version>
<version>3.0.0</version>
<packaging>maven-plugin</packaging>

<name>com.opitzconsulting.orcas:orcas-maven-plugin</name>
Expand Down Expand Up @@ -43,12 +43,12 @@
<dependency>
<groupId>com.opitzconsulting.orcas</groupId>
<artifactId>orcas-main</artifactId>
<version>2.7.1-SNAPSHOT</version>
</dependency>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>com.opitzconsulting.orcas</groupId>
<artifactId>orcas-db-objects</artifactId>
<version>2.7.1-SNAPSHOT</version>
<version>3.0.0</version>
</dependency>

<dependency>
Expand All @@ -60,7 +60,7 @@
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.4</version>
<version>3.5</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand All @@ -73,6 +73,23 @@
</resources>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.5</version>
<executions>
<execution>
<id>default-descriptor</id>
<phase>process-classes</phase>
</execution>
<execution>
<id>help-goal</id>
<goals>
<goal>helpmojo</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
Expand Down

0 comments on commit 6ccf59a

Please sign in to comment.