Skip to content

Commit

Permalink
2.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
lgrignon committed Mar 15, 2019
1 parent e1d3e61 commit c904d06
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'java'
apply plugin: 'maven'

group = 'org.jsweet'
version = "2.2.0-SNAPSHOT"
version = "2.2.0"

description = """A set of examples to illustrate JSweet"""

Expand All @@ -25,7 +25,7 @@ buildscript {
maven { url "http://repository.jsweet.org/artifactory/plugins-release-local" }
}
dependencies {
classpath('org.jsweet:jsweet-gradle-plugin:2.2.0-SNAPSHOT') { //
classpath('org.jsweet:jsweet-gradle-plugin:2.2.0') { //
transitive = true }
}
}
Expand All @@ -46,8 +46,8 @@ repositories {
}

dependencies {
compile group: 'org.jsweet', name: 'jsweet-transpiler', version: "2.2.0-SNAPSHOT"
compile group: 'org.jsweet', name: 'jsweet-core', version: "6-SNAPSHOT"
compile group: 'org.jsweet', name: 'jsweet-transpiler', version: "2.2.0"
compile group: 'org.jsweet', name: 'jsweet-core', version: "6"
compile group: 'org.jsweet.candies', name: 'angular', version: "1.4.0-20170726"
compile group: 'org.jsweet.candies', name: 'angular-route', version: "1.2.0-20170726"
compile group: 'org.jsweet.candies', name: 'backbone', version:"1.3.0-20170726"
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.jsweet</groupId>
<artifactId>jsweet-examples</artifactId>
<version>2.2.0-SNAPSHOT</version>
<version>2.2.0</version>
<name>JSweet examples</name>
<description>A set of examples to illustrate JSweet v2</description>
<developers>
Expand Down Expand Up @@ -66,7 +66,7 @@
<plugin>
<groupId>org.jsweet</groupId>
<artifactId>jsweet-maven-plugin</artifactId>
<version>2.2.0-SNAPSHOT</version>
<version>2.2.0</version>
<configuration>
<verbose>true</verbose>
<sourceMap>true</sourceMap>
Expand Down Expand Up @@ -126,7 +126,7 @@
<dependency>
<groupId>org.jsweet</groupId>
<artifactId>jsweet-core</artifactId>
<version>6-SNAPSHOT</version>
<version>6</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
Expand Down

0 comments on commit c904d06

Please sign in to comment.