-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added two more versions o fthe java-ts.core dep
- Loading branch information
1 parent
491a90c
commit 97cf9b7
Showing
6 changed files
with
282 additions
and
0 deletions.
There are no files selected for viewing
Binary file added
BIN
+211 KB
...es/org/jsweet/ext/typescript.java-ts.core/2.0.3/typescript.java-ts.core-2.0.3-sources.jar
Binary file not shown.
Binary file added
BIN
+248 KB
dependencies/org/jsweet/ext/typescript.java-ts.core/2.0.3/typescript.java-ts.core-2.0.3.jar
Binary file not shown.
141 changes: 141 additions & 0 deletions
141
dependencies/org/jsweet/ext/typescript.java-ts.core/2.0.3/typescript.java-ts.core-2.0.3.pom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
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.ext</groupId> | ||
<artifactId>typescript.java-ts.core</artifactId> | ||
<packaging>jar</packaging> | ||
<version>2.0.3</version> | ||
<properties> | ||
<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>1.${java.version.release}</java.version> | ||
</properties> | ||
<build> | ||
<sourceDirectory>src</sourceDirectory> | ||
<resources> | ||
<resource> | ||
<directory>src/main/resources</directory> | ||
<filtering>true</filtering> | ||
</resource> | ||
</resources> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.8.1</version> | ||
<configuration> | ||
<release>${java.version.release}</release> | ||
<compilerVersion>${java.version}</compilerVersion> | ||
<source>${java.version}</source> | ||
<target>${java.version}</target> | ||
<encoding>${project.build.sourceEncoding}</encoding> | ||
<compilerArgs> | ||
</compilerArgs> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>2.18.1</version> | ||
<configuration> | ||
<includes> | ||
<include>**/*.java</include> | ||
</includes> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>3.0.0</version> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>2.10.3</version> | ||
<configuration> | ||
<javadocVersion>1.8</javadocVersion> | ||
<sourcepath>src</sourcepath> | ||
<encoding>${project.build.sourceEncoding}</encoding> | ||
<skip>${skipJavadoc}</skip> | ||
<fixTags>all</fixTags> | ||
<failOnError>false</failOnError> | ||
<reportOutputDirectory>javadoc-out</reportOutputDirectory> | ||
<destDir>javadoc-out/ts.core-${project.version}</destDir> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.eclipsesource.minimal-json</groupId> | ||
<artifactId>minimal-json</artifactId> | ||
<version>0.9.4</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.code.gson</groupId> | ||
<artifactId>gson</artifactId> | ||
<version>2.8.6</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.tukaani</groupId> | ||
<artifactId>xz</artifactId> | ||
<version>1.8</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.osgi</groupId> | ||
<artifactId>org.osgi.core</artifactId> | ||
<version>4.3.0</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
|
||
<repositories> | ||
<repository> | ||
<id>jsweet-central</id> | ||
<name>libs-release</name> | ||
<url>http://repository.jsweet.org/artifactory/libs-release-local</url> | ||
</repository> | ||
<repository> | ||
<snapshots /> | ||
<id>jsweet-snapshots</id> | ||
<name>libs-snapshot</name> | ||
<url>http://repository.jsweet.org/artifactory/libs-snapshot-local</url> | ||
</repository> | ||
<repository> | ||
<id>jsweet-external</id> | ||
<name>libs-release</name> | ||
<url>http://repository.jsweet.org/artifactory/ext-release-local</url> | ||
</repository> | ||
</repositories> | ||
<distributionManagement> | ||
<repository> | ||
<id>jsweet-release</id> | ||
<name>libs-release</name> | ||
<url>http://repository.jsweet.org/artifactory/libs-release-local</url> | ||
</repository> | ||
<snapshotRepository> | ||
<id>jsweet-snapshots</id> | ||
<name>libs-snapshot</name> | ||
<url>http://repository.jsweet.org/artifactory/libs-snapshot-local</url> | ||
</snapshotRepository> | ||
</distributionManagement> | ||
</project> |
Binary file added
BIN
+211 KB
...es/org/jsweet/ext/typescript.java-ts.core/2.0.4/typescript.java-ts.core-2.0.4-sources.jar
Binary file not shown.
Binary file added
BIN
+251 KB
dependencies/org/jsweet/ext/typescript.java-ts.core/2.0.4/typescript.java-ts.core-2.0.4.jar
Binary file not shown.
141 changes: 141 additions & 0 deletions
141
dependencies/org/jsweet/ext/typescript.java-ts.core/2.0.4/typescript.java-ts.core-2.0.4.pom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
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.ext</groupId> | ||
<artifactId>typescript.java-ts.core</artifactId> | ||
<packaging>jar</packaging> | ||
<version>2.0.4</version> | ||
<properties> | ||
<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>1.${java.version.release}</java.version> | ||
</properties> | ||
<build> | ||
<sourceDirectory>src</sourceDirectory> | ||
<resources> | ||
<resource> | ||
<directory>src/main/resources</directory> | ||
<filtering>true</filtering> | ||
</resource> | ||
</resources> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.8.1</version> | ||
<configuration> | ||
<release>${java.version.release}</release> | ||
<compilerVersion>${java.version}</compilerVersion> | ||
<source>${java.version}</source> | ||
<target>${java.version}</target> | ||
<encoding>${project.build.sourceEncoding}</encoding> | ||
<compilerArgs> | ||
</compilerArgs> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>2.18.1</version> | ||
<configuration> | ||
<includes> | ||
<include>**/*.java</include> | ||
</includes> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>3.0.0</version> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>2.10.3</version> | ||
<configuration> | ||
<javadocVersion>1.8</javadocVersion> | ||
<sourcepath>src</sourcepath> | ||
<encoding>${project.build.sourceEncoding}</encoding> | ||
<skip>${skipJavadoc}</skip> | ||
<fixTags>all</fixTags> | ||
<failOnError>false</failOnError> | ||
<reportOutputDirectory>javadoc-out</reportOutputDirectory> | ||
<destDir>javadoc-out/ts.core-${project.version}</destDir> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.eclipsesource.minimal-json</groupId> | ||
<artifactId>minimal-json</artifactId> | ||
<version>0.9.4</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.code.gson</groupId> | ||
<artifactId>gson</artifactId> | ||
<version>2.8.6</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.tukaani</groupId> | ||
<artifactId>xz</artifactId> | ||
<version>1.8</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.osgi</groupId> | ||
<artifactId>org.osgi.core</artifactId> | ||
<version>4.3.0</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
|
||
<repositories> | ||
<repository> | ||
<id>jsweet-central</id> | ||
<name>libs-release</name> | ||
<url>http://repository.jsweet.org/artifactory/libs-release-local</url> | ||
</repository> | ||
<repository> | ||
<snapshots /> | ||
<id>jsweet-snapshots</id> | ||
<name>libs-snapshot</name> | ||
<url>http://repository.jsweet.org/artifactory/libs-snapshot-local</url> | ||
</repository> | ||
<repository> | ||
<id>jsweet-external</id> | ||
<name>libs-release</name> | ||
<url>http://repository.jsweet.org/artifactory/ext-release-local</url> | ||
</repository> | ||
</repositories> | ||
<distributionManagement> | ||
<repository> | ||
<id>jsweet-release</id> | ||
<name>libs-release</name> | ||
<url>http://repository.jsweet.org/artifactory/libs-release-local</url> | ||
</repository> | ||
<snapshotRepository> | ||
<id>jsweet-snapshots</id> | ||
<name>libs-snapshot</name> | ||
<url>http://repository.jsweet.org/artifactory/libs-snapshot-local</url> | ||
</snapshotRepository> | ||
</distributionManagement> | ||
</project> |