mirror of
https://github.com/cincheo/jsweet.git
synced 2025-12-14 14:59:21 +00:00
revert to orignal group id + java 8 for candies
This commit is contained in:
parent
927f2bce73
commit
1eaf3c799d
5
.gitignore
vendored
5
.gitignore
vendored
@ -4,4 +4,7 @@ bin/
|
||||
transpiler/jsweet-transpiler-2.0.1-SNAPSHOT
|
||||
core-lib/es5/jsweet-core/
|
||||
core-lib/es6/jsweet-core/
|
||||
/tmp
|
||||
/tmp
|
||||
node_modules/
|
||||
package-lock.json
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.jsweet.v3</groupId>
|
||||
<groupId>org.jsweet</groupId>
|
||||
<artifactId>jsweet-core</artifactId>
|
||||
<name>JSweet Core Lib</name>
|
||||
<description>JavaScript API for JSweet</description>
|
||||
@ -11,7 +11,7 @@
|
||||
<timestamp>${maven.build.timestamp}</timestamp>
|
||||
<maven.build.timestamp.format>yyyy-MM-dd HH:mm:ss</maven.build.timestamp.format>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<java.version.release>11</java.version.release>
|
||||
<java.version.release>8</java.version.release>
|
||||
<java.version>1.${java.version.release}</java.version>
|
||||
</properties>
|
||||
|
||||
|
||||
@ -1,10 +0,0 @@
|
||||
open module org.jsweet.core.es5 {
|
||||
exports def.js;
|
||||
exports def.dom;
|
||||
exports def.dom.intl;
|
||||
exports jsweet.lang;
|
||||
exports jsweet.util;
|
||||
exports jsweet.util.union;
|
||||
exports jsweet.util.tuple;
|
||||
exports jsweet.util.function;
|
||||
}
|
||||
@ -2,7 +2,7 @@
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.jsweet.v3</groupId>
|
||||
<groupId>org.jsweet</groupId>
|
||||
<artifactId>jsweet-core</artifactId>
|
||||
<version>6.0.0</version>
|
||||
<name>JSweet Core Lib</name>
|
||||
@ -12,7 +12,7 @@
|
||||
<timestamp>${maven.build.timestamp}</timestamp>
|
||||
<maven.build.timestamp.format>yyyy-MM-dd HH:mm:ss</maven.build.timestamp.format>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<java.version.release>11</java.version.release>
|
||||
<java.version.release>8</java.version.release>
|
||||
<java.version>1.${java.version.release}</java.version>
|
||||
</properties>
|
||||
<developers>
|
||||
|
||||
@ -1,10 +0,0 @@
|
||||
open module org.jsweet.core.es6 {
|
||||
exports def.js;
|
||||
exports def.dom;
|
||||
exports def.dom.intl;
|
||||
exports jsweet.lang;
|
||||
exports jsweet.util;
|
||||
exports jsweet.util.union;
|
||||
exports jsweet.util.tuple;
|
||||
exports jsweet.util.function;
|
||||
}
|
||||
@ -2,7 +2,7 @@
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.jsweet.v3</groupId>
|
||||
<groupId>org.jsweet</groupId>
|
||||
<artifactId>jsweet-transpiler</artifactId>
|
||||
<version>3.0.0</version>
|
||||
<name>JSweet transpiler</name>
|
||||
@ -265,45 +265,87 @@
|
||||
|
||||
<!-- Test-only dependencies for testing candies -->
|
||||
<dependency>
|
||||
<groupId>org.jsweet.v3</groupId>
|
||||
<groupId>org.jsweet</groupId>
|
||||
<artifactId>jsweet-core</artifactId>
|
||||
<version>6.0.0</version>
|
||||
<scope>compile</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jsweet.v3.candies</groupId>
|
||||
<artifactId>jquery</artifactId>
|
||||
<version>1.10.0-20200915</version>
|
||||
<scope>test</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jsweet.v3.candies</groupId>
|
||||
<artifactId>backbone</artifactId>
|
||||
<version>1.3.0-20200915</version>
|
||||
<scope>test</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jsweet.v3.candies</groupId>
|
||||
<artifactId>angular</artifactId>
|
||||
<version>1.4.0-20200915</version>
|
||||
<scope>test</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jsweet.v3.candies</groupId>
|
||||
<artifactId>angular-route</artifactId>
|
||||
<version>1.2.0-20200915</version>
|
||||
<scope>test</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.jsweet.v3.candies</groupId>
|
||||
<groupId>org.jsweet.candies</groupId>
|
||||
<artifactId>jquery</artifactId>
|
||||
<version>1.10.0-20170726</version>
|
||||
<scope>test</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jsweet.candies</groupId>
|
||||
<artifactId>jqueryui</artifactId>
|
||||
<version>1.11.0-20200915</version>
|
||||
<version>1.11.0-20170726</version>
|
||||
<scope>test</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jsweet.candies</groupId>
|
||||
<artifactId>backbone</artifactId>
|
||||
<version>1.3.0-20170726</version>
|
||||
<scope>test</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jsweet.candies</groupId>
|
||||
<artifactId>angular</artifactId>
|
||||
<version>1.4.0-20170726</version>
|
||||
<scope>test</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jsweet.candies</groupId>
|
||||
<artifactId>angular-route</artifactId>
|
||||
<version>1.2.0-20170726</version>
|
||||
<scope>test</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jsweet.candies</groupId>
|
||||
<artifactId>node</artifactId>
|
||||
<version>7.5.0-20170726</version>
|
||||
<scope>test</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jsweet.candies</groupId>
|
||||
<artifactId>express</artifactId>
|
||||
<version>4.14.0-20170726</version>
|
||||
<scope>test</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jsweet.candies</groupId>
|
||||
<artifactId>express-errorhandler</artifactId>
|
||||
<version>4.14.0-20170726</version>
|
||||
<scope>test</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jsweet.candies</groupId>
|
||||
<artifactId>express-body-parser</artifactId>
|
||||
<version>4.14.0-20170726</version>
|
||||
<scope>test</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jsweet.candies</groupId>
|
||||
<artifactId>socket.io</artifactId>
|
||||
<version>1.4.5-20170726</version>
|
||||
<scope>test</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jsweet.candies</groupId>
|
||||
<artifactId>threejs</artifactId>
|
||||
<version>75-20171101</version>
|
||||
<scope>test</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user