Removes obsolete jars
* Will now be used from local maven repository
Change-Id: Ie8be595c237ec445023017b0a70f83376926f1d2
Signed-off-by: Frank Schnicke <frank.schnicke@iese.fraunhofer.de>
diff --git a/components/basys.components/repo/basys/basys.sdk/0.0.1-SNAPSHOT/_remote.repositories b/components/basys.components/repo/basys/basys.sdk/0.0.1-SNAPSHOT/_remote.repositories
deleted file mode 100644
index 3fb55bd..0000000
--- a/components/basys.components/repo/basys/basys.sdk/0.0.1-SNAPSHOT/_remote.repositories
+++ /dev/null
@@ -1,5 +0,0 @@
-#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
-#Thu Jul 18 09:19:27 CEST 2019
-basys.sdk-0.0.1-SNAPSHOT.jar>=
-basys.sdk-0.0.1-SNAPSHOT.pom>=
-basys.sdk-0.0.1-SNAPSHOT-sources.jar>=
diff --git a/components/basys.components/repo/basys/basys.sdk/0.0.1-SNAPSHOT/basys.sdk-0.0.1-SNAPSHOT-sources.jar b/components/basys.components/repo/basys/basys.sdk/0.0.1-SNAPSHOT/basys.sdk-0.0.1-SNAPSHOT-sources.jar
deleted file mode 100644
index 7c047e6..0000000
--- a/components/basys.components/repo/basys/basys.sdk/0.0.1-SNAPSHOT/basys.sdk-0.0.1-SNAPSHOT-sources.jar
+++ /dev/null
Binary files differ
diff --git a/components/basys.components/repo/basys/basys.sdk/0.0.1-SNAPSHOT/basys.sdk-0.0.1-SNAPSHOT.jar b/components/basys.components/repo/basys/basys.sdk/0.0.1-SNAPSHOT/basys.sdk-0.0.1-SNAPSHOT.jar
deleted file mode 100644
index 3748162..0000000
--- a/components/basys.components/repo/basys/basys.sdk/0.0.1-SNAPSHOT/basys.sdk-0.0.1-SNAPSHOT.jar
+++ /dev/null
Binary files differ
diff --git a/components/basys.components/repo/basys/basys.sdk/0.0.1-SNAPSHOT/basys.sdk-0.0.1-SNAPSHOT.pom b/components/basys.components/repo/basys/basys.sdk/0.0.1-SNAPSHOT/basys.sdk-0.0.1-SNAPSHOT.pom
deleted file mode 100644
index c9e5f77..0000000
--- a/components/basys.components/repo/basys/basys.sdk/0.0.1-SNAPSHOT/basys.sdk-0.0.1-SNAPSHOT.pom
+++ /dev/null
@@ -1,223 +0,0 @@
-<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>basys.sdk</groupId>
- <artifactId>basys.sdk</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <packaging>jar</packaging>
- <name>BaSyx SDK</name>
-
-
- <build>
- <sourceDirectory>src</sourceDirectory>
-
- <testSourceDirectory>
- regression
- </testSourceDirectory>
-
- <plugins>
- <!-- Add sources for regression-support to sourceDirectory -->
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>build-helper-maven-plugin</artifactId>
- <version>3.0.0</version>
- <executions>
- <execution>
- <id>attachSupport</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>add-source</goal>
- </goals>
- <configuration>
- <sources>
- <source>regression/org/eclipse/basyx/testsuite/support</source>
- </sources>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
- <!-- Compile Sources with Java 8 -->
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.7.0</version>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- </configuration>
- </plugin>
-
- <!-- Run Unit Tests -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>2.12.1</version>
- </plugin>
-
- <!-- Run Integration Tests -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-failsafe-plugin</artifactId>
- <version>2.12.4</version>
- <configuration>
- <includes>
- <include>**/*HTTP*</include>
- <include>**/*TCP*</include>
- </includes>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>integration-test</goal>
- <goal>verify</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
-
- <!-- Attach sources to jar file -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <version>3.1.0</version>
- <executions>
- <execution>
- <id>attach-sources</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
-
- <!-- Install jar file to /components and /examples package -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-install-plugin</artifactId>
- <version>3.0.0-M1</version>
- <configuration>
- <artifactId>basys.sdk</artifactId>
- <groupId>basys</groupId>
- <version>0.0.1-SNAPSHOT</version>
- <packaging>jar</packaging>
- </configuration>
- <executions>
- <execution>
- <id>installComponents</id>
- <goals>
- <goal>install-file</goal>
- </goals>
- <phase>install</phase>
- <configuration>
- <file>target/basys.sdk-0.0.1-SNAPSHOT.jar</file>
- <localRepositoryPath>../../../components/basys.components/repo/</localRepositoryPath>
- </configuration>
- </execution>
- <execution>
- <id>installComponentsSources</id>
- <goals>
- <goal>install-file</goal>
- </goals>
- <phase>install</phase>
- <configuration>
- <file>target/basys.sdk-0.0.1-SNAPSHOT-sources.jar</file>
- <classifier>sources</classifier>
- <localRepositoryPath>../../../components/basys.components/repo/</localRepositoryPath>
- </configuration>
- </execution>
- <execution>
- <id>installExamples</id>
- <goals>
- <goal>install-file</goal>
- </goals>
- <phase>install</phase>
- <configuration>
- <file>target/basys.sdk-0.0.1-SNAPSHOT.jar</file>
- <localRepositoryPath>../../../examples/basys.examples/repo/</localRepositoryPath>
- </configuration>
- </execution>
- <execution>
- <id>installExamplesSources</id>
- <goals>
- <goal>install-file</goal>
- </goals>
- <phase>install</phase>
- <configuration>
- <file>target/basys.sdk-0.0.1-SNAPSHOT-sources.jar</file>
- <classifier>sources</classifier>
- <localRepositoryPath>../../../examples/basys.examples/repo/</localRepositoryPath>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
- </plugins>
- </build>
-
-
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.12</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
- <dependency>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- <version>2.8.5</version>
- </dependency>
- <dependency>
- <groupId>org.junit.jupiter</groupId>
- <artifactId>junit-jupiter-api</artifactId>
- <version>5.3.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.derby</groupId>
- <artifactId>derby</artifactId>
- <version>10.14.2.0</version>
- </dependency>
- <dependency>
- <groupId>javax.mail</groupId>
- <artifactId>mail</artifactId>
- <version>1.4</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/javax.ws.rs/javax.ws.rs-api -->
- <dependency>
- <groupId>javax.ws.rs</groupId>
- <artifactId>javax.ws.rs-api</artifactId>
- <version>2.1</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-client -->
- <dependency>
- <groupId>org.glassfish.jersey.core</groupId>
- <artifactId>jersey-client</artifactId>
- <version>2.26-b03</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/javax.servlet/servlet-api -->
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <version>4.0.1</version>
- <scope>provided</scope>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.apache.tomcat/tomcat-catalina
- (Tomcat 8, not 9) -->
- <dependency>
- <groupId>org.apache.tomcat</groupId>
- <artifactId>tomcat-catalina</artifactId>
- <version>8.0.32</version>
- </dependency>
- <dependency>
- <groupId>org.eclipse.milo</groupId>
- <artifactId>sdk-client</artifactId>
- <version>0.3.1</version>
- </dependency>
- <dependency>
- <groupId>org.eclipse.milo</groupId>
- <artifactId>sdk-server</artifactId>
- <version>0.3.1</version>
- </dependency>
- </dependencies>
-</project>
\ No newline at end of file
diff --git a/components/basys.components/repo/basys/basys.sdk/0.0.1-SNAPSHOT/maven-metadata-local.xml b/components/basys.components/repo/basys/basys.sdk/0.0.1-SNAPSHOT/maven-metadata-local.xml
deleted file mode 100644
index 4a9c7c7..0000000
--- a/components/basys.components/repo/basys/basys.sdk/0.0.1-SNAPSHOT/maven-metadata-local.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<metadata modelVersion="1.1.0">
- <groupId>basys</groupId>
- <artifactId>basys.sdk</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <versioning>
- <snapshot>
- <localCopy>true</localCopy>
- </snapshot>
- <lastUpdated>20190718071927</lastUpdated>
- <snapshotVersions>
- <snapshotVersion>
- <classifier>sources</classifier>
- <extension>jar</extension>
- <value>0.0.1-SNAPSHOT</value>
- <updated>20190718071927</updated>
- </snapshotVersion>
- <snapshotVersion>
- <extension>pom</extension>
- <value>0.0.1-SNAPSHOT</value>
- <updated>20190718071927</updated>
- </snapshotVersion>
- <snapshotVersion>
- <extension>jar</extension>
- <value>0.0.1-SNAPSHOT</value>
- <updated>20190718071927</updated>
- </snapshotVersion>
- </snapshotVersions>
- </versioning>
-</metadata>
diff --git a/components/basys.components/repo/basys/basys.sdk/maven-metadata-local.xml b/components/basys.components/repo/basys/basys.sdk/maven-metadata-local.xml
deleted file mode 100644
index 8a36ef3..0000000
--- a/components/basys.components/repo/basys/basys.sdk/maven-metadata-local.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<metadata>
- <groupId>basys</groupId>
- <artifactId>basys.sdk</artifactId>
- <versioning>
- <versions>
- <version>0.0.1-SNAPSHOT</version>
- </versions>
- <lastUpdated>20190718071927</lastUpdated>
- </versioning>
-</metadata>
diff --git a/examples/basys.examples/repo/basys/basys.components/0.0.1-SNAPSHOT/_remote.repositories b/examples/basys.examples/repo/basys/basys.components/0.0.1-SNAPSHOT/_remote.repositories
deleted file mode 100644
index 6fab419..0000000
--- a/examples/basys.examples/repo/basys/basys.components/0.0.1-SNAPSHOT/_remote.repositories
+++ /dev/null
@@ -1,5 +0,0 @@
-#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
-#Thu Jul 18 10:11:39 CEST 2019
-basys.components-0.0.1-SNAPSHOT.jar>=
-basys.components-0.0.1-SNAPSHOT.pom>=
-basys.components-0.0.1-SNAPSHOT-sources.jar>=
diff --git a/examples/basys.examples/repo/basys/basys.components/0.0.1-SNAPSHOT/basys.components-0.0.1-SNAPSHOT-sources.jar b/examples/basys.examples/repo/basys/basys.components/0.0.1-SNAPSHOT/basys.components-0.0.1-SNAPSHOT-sources.jar
deleted file mode 100644
index c2f84ef..0000000
--- a/examples/basys.examples/repo/basys/basys.components/0.0.1-SNAPSHOT/basys.components-0.0.1-SNAPSHOT-sources.jar
+++ /dev/null
Binary files differ
diff --git a/examples/basys.examples/repo/basys/basys.components/0.0.1-SNAPSHOT/basys.components-0.0.1-SNAPSHOT.jar b/examples/basys.examples/repo/basys/basys.components/0.0.1-SNAPSHOT/basys.components-0.0.1-SNAPSHOT.jar
deleted file mode 100644
index a389c89..0000000
--- a/examples/basys.examples/repo/basys/basys.components/0.0.1-SNAPSHOT/basys.components-0.0.1-SNAPSHOT.jar
+++ /dev/null
Binary files differ
diff --git a/examples/basys.examples/repo/basys/basys.components/0.0.1-SNAPSHOT/basys.components-0.0.1-SNAPSHOT.pom b/examples/basys.examples/repo/basys/basys.components/0.0.1-SNAPSHOT/basys.components-0.0.1-SNAPSHOT.pom
deleted file mode 100644
index f689340..0000000
--- a/examples/basys.examples/repo/basys/basys.components/0.0.1-SNAPSHOT/basys.components-0.0.1-SNAPSHOT.pom
+++ /dev/null
@@ -1,382 +0,0 @@
-<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>basys.components</groupId>
- <artifactId>basys.components</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <packaging>jar</packaging>
- <name>BaSys Components</name>
-
- <repositories>
- <repository>
- <id>data-local</id>
- <name>data</name>
- <url>file://${project.basedir}/repo</url>
- </repository>
- </repositories>
-
- <build>
- <sourceDirectory>src</sourceDirectory>
-
- <testSourceDirectory>
- ${project.basedir}/regression/org/eclipse/basyx/regression
- </testSourceDirectory>
-
- <plugins>
- <!-- Add sources for servlets and regression-support to sourceDirectory -->
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>build-helper-maven-plugin</artifactId>
- <version>3.0.0</version>
- <executions>
- <execution>
- <id>attachServlets</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>add-source</goal>
- </goals>
- <configuration>
- <sources>
- <source>servlets</source>
- </sources>
- </configuration>
- </execution>
- <execution>
- <id>attachSupport</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>add-source</goal>
- </goals>
- <configuration>
- <sources>
- <source>regression/org/eclipse/basyx/regression/support</source>
- </sources>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.7.0</version>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- </configuration>
- </plugin>
-
- <plugin>
- <artifactId>maven-war-plugin</artifactId>
- <version>3.0.0</version>
- <!-- <configuration> <warSourceDirectory>WebContent</warSourceDirectory>
- </configuration> -->
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <!-- <version>2.12.1</version> -->
- <version>2.4.2</version>
- <configuration>
- <excludes>
- <exclude>**/*HTTP*</exclude>
- <exclude>**/*TCP*</exclude>
- </excludes>
- </configuration>
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-failsafe-plugin</artifactId>
- <version>2.12.4</version>
- <configuration>
- <includes>
- <include>**/*HTTP*</include>
- <include>**/*TCP*</include>
- </includes>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>integration-test</goal>
- <goal>verify</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
-
- <!-- Attach sources to jar file -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <version>3.1.0</version>
- <executions>
- <execution>
- <id>attach-sources</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
-
- <!-- Install jar file to /components and /examples package -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-install-plugin</artifactId>
- <version>3.0.0-M1</version>
- <configuration>
- <artifactId>basys.components</artifactId>
- <groupId>basys</groupId>
- <version>0.0.1-SNAPSHOT</version>
- <packaging>jar</packaging>
- </configuration>
- <executions>
- <execution>
- <id>installExamples</id>
- <goals>
- <goal>install-file</goal>
- </goals>
- <phase>install</phase>
- <configuration>
- <file>target/basys.components-0.0.1-SNAPSHOT.jar</file>
- <localRepositoryPath>../../examples/basys.examples/repo/</localRepositoryPath>
- </configuration>
- </execution>
- <execution>
- <id>installExamplesSources</id>
- <goals>
- <goal>install-file</goal>
- </goals>
- <phase>install</phase>
- <configuration>
- <file>target/basys.components-0.0.1-SNAPSHOT-sources.jar</file>
- <classifier>sources</classifier>
- <localRepositoryPath>../../examples/basys.examples/repo/</localRepositoryPath>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
- </plugins>
- </build>
-
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.12</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
- <!-- https://mvnrepository.com/artifact/org.apache.tomcat/tomcat-catalina
- (Tomcat 8, not 9) -->
- <dependency>
- <groupId>org.apache.tomcat</groupId>
- <artifactId>tomcat-catalina</artifactId>
- <version>8.0.32</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/javax.ws.rs/javax.ws.rs-api -->
- <dependency>
- <groupId>javax.ws.rs</groupId>
- <artifactId>javax.ws.rs-api</artifactId>
- <version>2.1</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-client -->
- <dependency>
- <groupId>org.glassfish.jersey.core</groupId>
- <artifactId>jersey-client</artifactId>
- <version>2.26-b03</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/javax.servlet/servlet-api -->
- <dependency>
- <groupId>org.json</groupId>
- <artifactId>json</artifactId>
- <version>20180813</version>
- <!-- <scope>provided</scope> -->
- </dependency>
- <!-- Dependencies removed from Classpath -->
- <!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
- <dependency>
- <groupId>org.postgresql</groupId>
- <artifactId>postgresql</artifactId>
- <version>42.2.2</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.glassfish.hk2.external/aopalliance-repackaged -->
- <dependency>
- <groupId>org.glassfish.hk2.external</groupId>
- <artifactId>aopalliance-repackaged</artifactId>
- <version>2.5.0-b42</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/javax.enterprise/cdi-api -->
- <dependency>
- <groupId>javax.enterprise</groupId>
- <artifactId>cdi-api</artifactId>
- <version>2.0</version>
- <scope>provided</scope>
- </dependency>
- <!-- https://mvnrepository.com/artifact/javax.el/el-api -->
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>2.2</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.glassfish.hk2/hk2-api -->
- <dependency>
- <groupId>org.glassfish.hk2</groupId>
- <artifactId>hk2-api</artifactId>
- <version>2.5.0</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/javassist/javassist -->
- <dependency>
- <groupId>javassist</groupId>
- <artifactId>javassist</artifactId>
- <version>3.12.1.GA</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/javax.annotation/javax.annotation-api -->
- <!-- https://mvnrepository.com/artifact/javax.inject/javax.inject -->
- <dependency>
- <groupId>javax.inject</groupId>
- <artifactId>javax.inject</artifactId>
- <version>1</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/javax.json/javax.json-api -->
- <dependency>
- <groupId>javax.json</groupId>
- <artifactId>javax.json-api</artifactId>
- <version>1.0</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api -->
- <dependency>
- <groupId>javax.xml.bind</groupId>
- <artifactId>jaxb-api</artifactId>
- <version>2.3.0</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.jboss.spec.javax.interceptor/jboss-interceptors-api_1.1_spec -->
- <dependency>
- <groupId>org.jboss.spec.javax.interceptor</groupId>
- <artifactId>jboss-interceptors-api_1.1_spec</artifactId>
- <version>1.0.1.Final</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/javax.annotation/javax.annotation-api -->
- <dependency>
- <groupId>javax.annotation</groupId>
- <artifactId>javax.annotation-api</artifactId>
- <version>1.3.2</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.osgi/org.osgi.core -->
- <dependency>
- <groupId>org.osgi</groupId>
- <artifactId>org.osgi.core</artifactId>
- <version>4.2.0</version>
- <scope>provided</scope>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.glassfish.hk2/osgi-resource-locator -->
- <dependency>
- <groupId>org.glassfish.hk2</groupId>
- <artifactId>osgi-resource-locator</artifactId>
- <version>1.0.1</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/javax.persistence/persistence-api -->
- <dependency>
- <groupId>javax.persistence</groupId>
- <artifactId>persistence-api</artifactId>
- <version>1.0.2</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/javax.validation/validation-api -->
- <dependency>
- <groupId>javax.validation</groupId>
- <artifactId>validation-api</artifactId>
- <version>2.0.1.Final</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <version>3.1.0</version>
- <scope>provided</scope>
- </dependency>
-
- <!-- https://mvnrepository.com/artifact/org.eclipse/yasson -->
- <dependency>
- <groupId>org.eclipse</groupId>
- <artifactId>yasson</artifactId>
- <version>1.0.2</version>
- </dependency>
-<!-- https://mvnrepository.com/artifact/org.activiti/activiti-engine -->
- <dependency>
- <groupId>org.activiti</groupId>
- <artifactId>activiti-engine</artifactId>
- <version>6.0.0</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.activiti/activiti-bpmn-model -->
- <dependency>
- <groupId>org.activiti</groupId>
- <artifactId>activiti-bpmn-model</artifactId>
- <version>6.0.0</version>
- </dependency>
-
- <!-- https://mvnrepository.com/artifact/org.activiti/activiti-bpmn-layout -->
- <dependency>
- <groupId>org.activiti</groupId>
- <artifactId>activiti-bpmn-layout</artifactId>
- <version>6.0.0</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>2.4</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.h2database/h2 -->
- <dependency>
- <groupId>com.h2database</groupId>
- <artifactId>h2</artifactId>
- <version>1.4.197</version>
- </dependency>
-
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-log4j12</artifactId>
- <version>1.7.5</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/javax.xml.xquery/xqj-api (Add from
- local repository because jar cannot be found on maven central -->
- <dependency>
- <groupId>javax.xml.xquery</groupId>
- <artifactId>xqj-api</artifactId>
- <version>1.0</version>
- </dependency>
-
- <!-- https://mvnrepository.com/artifact/net.sf.saxon/saxon-xqj -->
- <!-- <dependency> <groupId>net.sf.saxon</groupId> <artifactId>saxon-xqj</artifactId>
- <version>9.x</version> </dependency> -->
-
- <!-- https://mvnrepository.com/artifact/net.sf.saxon/saxon-xqj -->
- <dependency>
- <groupId>net.sf.saxon</groupId>
- <artifactId>saxon-xqj</artifactId>
- <version>8.9</version>
- </dependency>
-
-
- <!-- https://mvnrepository.com/artifact/net.sf.saxon/Saxon-HE -->
- <dependency>
- <groupId>net.sf.saxon</groupId>
- <artifactId>Saxon-HE</artifactId>
- <version>9.5.1-5</version>
- </dependency>
-
- <dependency>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- <version>2.8.5</version>
- </dependency>
-
- <dependency>
- <groupId>basys</groupId>
- <artifactId>basys.sdk</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- </dependencies>
-</project>
\ No newline at end of file
diff --git a/examples/basys.examples/repo/basys/basys.components/0.0.1-SNAPSHOT/maven-metadata-local.xml b/examples/basys.examples/repo/basys/basys.components/0.0.1-SNAPSHOT/maven-metadata-local.xml
deleted file mode 100644
index 1a1f8da..0000000
--- a/examples/basys.examples/repo/basys/basys.components/0.0.1-SNAPSHOT/maven-metadata-local.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<metadata modelVersion="1.1.0">
- <groupId>basys</groupId>
- <artifactId>basys.components</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <versioning>
- <snapshot>
- <localCopy>true</localCopy>
- </snapshot>
- <lastUpdated>20190718081139</lastUpdated>
- <snapshotVersions>
- <snapshotVersion>
- <classifier>sources</classifier>
- <extension>jar</extension>
- <value>0.0.1-SNAPSHOT</value>
- <updated>20190718081139</updated>
- </snapshotVersion>
- <snapshotVersion>
- <extension>pom</extension>
- <value>0.0.1-SNAPSHOT</value>
- <updated>20190718081139</updated>
- </snapshotVersion>
- <snapshotVersion>
- <extension>jar</extension>
- <value>0.0.1-SNAPSHOT</value>
- <updated>20190718081139</updated>
- </snapshotVersion>
- </snapshotVersions>
- </versioning>
-</metadata>
diff --git a/examples/basys.examples/repo/basys/basys.components/maven-metadata-local.xml b/examples/basys.examples/repo/basys/basys.components/maven-metadata-local.xml
deleted file mode 100644
index 5f4cc4e..0000000
--- a/examples/basys.examples/repo/basys/basys.components/maven-metadata-local.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<metadata>
- <groupId>basys</groupId>
- <artifactId>basys.components</artifactId>
- <versioning>
- <versions>
- <version>0.0.1-SNAPSHOT</version>
- </versions>
- <lastUpdated>20190718081139</lastUpdated>
- </versioning>
-</metadata>
diff --git a/examples/basys.examples/repo/basys/basys.sdk/0.0.1-SNAPSHOT/_remote.repositories b/examples/basys.examples/repo/basys/basys.sdk/0.0.1-SNAPSHOT/_remote.repositories
deleted file mode 100644
index 3fb55bd..0000000
--- a/examples/basys.examples/repo/basys/basys.sdk/0.0.1-SNAPSHOT/_remote.repositories
+++ /dev/null
@@ -1,5 +0,0 @@
-#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
-#Thu Jul 18 09:19:27 CEST 2019
-basys.sdk-0.0.1-SNAPSHOT.jar>=
-basys.sdk-0.0.1-SNAPSHOT.pom>=
-basys.sdk-0.0.1-SNAPSHOT-sources.jar>=
diff --git a/examples/basys.examples/repo/basys/basys.sdk/0.0.1-SNAPSHOT/basys.sdk-0.0.1-SNAPSHOT-sources.jar b/examples/basys.examples/repo/basys/basys.sdk/0.0.1-SNAPSHOT/basys.sdk-0.0.1-SNAPSHOT-sources.jar
deleted file mode 100644
index 7c047e6..0000000
--- a/examples/basys.examples/repo/basys/basys.sdk/0.0.1-SNAPSHOT/basys.sdk-0.0.1-SNAPSHOT-sources.jar
+++ /dev/null
Binary files differ
diff --git a/examples/basys.examples/repo/basys/basys.sdk/0.0.1-SNAPSHOT/basys.sdk-0.0.1-SNAPSHOT.jar b/examples/basys.examples/repo/basys/basys.sdk/0.0.1-SNAPSHOT/basys.sdk-0.0.1-SNAPSHOT.jar
deleted file mode 100644
index 3748162..0000000
--- a/examples/basys.examples/repo/basys/basys.sdk/0.0.1-SNAPSHOT/basys.sdk-0.0.1-SNAPSHOT.jar
+++ /dev/null
Binary files differ
diff --git a/examples/basys.examples/repo/basys/basys.sdk/0.0.1-SNAPSHOT/basys.sdk-0.0.1-SNAPSHOT.pom b/examples/basys.examples/repo/basys/basys.sdk/0.0.1-SNAPSHOT/basys.sdk-0.0.1-SNAPSHOT.pom
deleted file mode 100644
index c9e5f77..0000000
--- a/examples/basys.examples/repo/basys/basys.sdk/0.0.1-SNAPSHOT/basys.sdk-0.0.1-SNAPSHOT.pom
+++ /dev/null
@@ -1,223 +0,0 @@
-<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>basys.sdk</groupId>
- <artifactId>basys.sdk</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <packaging>jar</packaging>
- <name>BaSyx SDK</name>
-
-
- <build>
- <sourceDirectory>src</sourceDirectory>
-
- <testSourceDirectory>
- regression
- </testSourceDirectory>
-
- <plugins>
- <!-- Add sources for regression-support to sourceDirectory -->
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>build-helper-maven-plugin</artifactId>
- <version>3.0.0</version>
- <executions>
- <execution>
- <id>attachSupport</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>add-source</goal>
- </goals>
- <configuration>
- <sources>
- <source>regression/org/eclipse/basyx/testsuite/support</source>
- </sources>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
- <!-- Compile Sources with Java 8 -->
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.7.0</version>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- </configuration>
- </plugin>
-
- <!-- Run Unit Tests -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>2.12.1</version>
- </plugin>
-
- <!-- Run Integration Tests -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-failsafe-plugin</artifactId>
- <version>2.12.4</version>
- <configuration>
- <includes>
- <include>**/*HTTP*</include>
- <include>**/*TCP*</include>
- </includes>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>integration-test</goal>
- <goal>verify</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
-
- <!-- Attach sources to jar file -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <version>3.1.0</version>
- <executions>
- <execution>
- <id>attach-sources</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
-
- <!-- Install jar file to /components and /examples package -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-install-plugin</artifactId>
- <version>3.0.0-M1</version>
- <configuration>
- <artifactId>basys.sdk</artifactId>
- <groupId>basys</groupId>
- <version>0.0.1-SNAPSHOT</version>
- <packaging>jar</packaging>
- </configuration>
- <executions>
- <execution>
- <id>installComponents</id>
- <goals>
- <goal>install-file</goal>
- </goals>
- <phase>install</phase>
- <configuration>
- <file>target/basys.sdk-0.0.1-SNAPSHOT.jar</file>
- <localRepositoryPath>../../../components/basys.components/repo/</localRepositoryPath>
- </configuration>
- </execution>
- <execution>
- <id>installComponentsSources</id>
- <goals>
- <goal>install-file</goal>
- </goals>
- <phase>install</phase>
- <configuration>
- <file>target/basys.sdk-0.0.1-SNAPSHOT-sources.jar</file>
- <classifier>sources</classifier>
- <localRepositoryPath>../../../components/basys.components/repo/</localRepositoryPath>
- </configuration>
- </execution>
- <execution>
- <id>installExamples</id>
- <goals>
- <goal>install-file</goal>
- </goals>
- <phase>install</phase>
- <configuration>
- <file>target/basys.sdk-0.0.1-SNAPSHOT.jar</file>
- <localRepositoryPath>../../../examples/basys.examples/repo/</localRepositoryPath>
- </configuration>
- </execution>
- <execution>
- <id>installExamplesSources</id>
- <goals>
- <goal>install-file</goal>
- </goals>
- <phase>install</phase>
- <configuration>
- <file>target/basys.sdk-0.0.1-SNAPSHOT-sources.jar</file>
- <classifier>sources</classifier>
- <localRepositoryPath>../../../examples/basys.examples/repo/</localRepositoryPath>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
- </plugins>
- </build>
-
-
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.12</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
- <dependency>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- <version>2.8.5</version>
- </dependency>
- <dependency>
- <groupId>org.junit.jupiter</groupId>
- <artifactId>junit-jupiter-api</artifactId>
- <version>5.3.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.derby</groupId>
- <artifactId>derby</artifactId>
- <version>10.14.2.0</version>
- </dependency>
- <dependency>
- <groupId>javax.mail</groupId>
- <artifactId>mail</artifactId>
- <version>1.4</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/javax.ws.rs/javax.ws.rs-api -->
- <dependency>
- <groupId>javax.ws.rs</groupId>
- <artifactId>javax.ws.rs-api</artifactId>
- <version>2.1</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-client -->
- <dependency>
- <groupId>org.glassfish.jersey.core</groupId>
- <artifactId>jersey-client</artifactId>
- <version>2.26-b03</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/javax.servlet/servlet-api -->
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <version>4.0.1</version>
- <scope>provided</scope>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.apache.tomcat/tomcat-catalina
- (Tomcat 8, not 9) -->
- <dependency>
- <groupId>org.apache.tomcat</groupId>
- <artifactId>tomcat-catalina</artifactId>
- <version>8.0.32</version>
- </dependency>
- <dependency>
- <groupId>org.eclipse.milo</groupId>
- <artifactId>sdk-client</artifactId>
- <version>0.3.1</version>
- </dependency>
- <dependency>
- <groupId>org.eclipse.milo</groupId>
- <artifactId>sdk-server</artifactId>
- <version>0.3.1</version>
- </dependency>
- </dependencies>
-</project>
\ No newline at end of file
diff --git a/examples/basys.examples/repo/basys/basys.sdk/0.0.1-SNAPSHOT/maven-metadata-local.xml b/examples/basys.examples/repo/basys/basys.sdk/0.0.1-SNAPSHOT/maven-metadata-local.xml
deleted file mode 100644
index 4a9c7c7..0000000
--- a/examples/basys.examples/repo/basys/basys.sdk/0.0.1-SNAPSHOT/maven-metadata-local.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<metadata modelVersion="1.1.0">
- <groupId>basys</groupId>
- <artifactId>basys.sdk</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <versioning>
- <snapshot>
- <localCopy>true</localCopy>
- </snapshot>
- <lastUpdated>20190718071927</lastUpdated>
- <snapshotVersions>
- <snapshotVersion>
- <classifier>sources</classifier>
- <extension>jar</extension>
- <value>0.0.1-SNAPSHOT</value>
- <updated>20190718071927</updated>
- </snapshotVersion>
- <snapshotVersion>
- <extension>pom</extension>
- <value>0.0.1-SNAPSHOT</value>
- <updated>20190718071927</updated>
- </snapshotVersion>
- <snapshotVersion>
- <extension>jar</extension>
- <value>0.0.1-SNAPSHOT</value>
- <updated>20190718071927</updated>
- </snapshotVersion>
- </snapshotVersions>
- </versioning>
-</metadata>
diff --git a/examples/basys.examples/repo/basys/basys.sdk/maven-metadata-local.xml b/examples/basys.examples/repo/basys/basys.sdk/maven-metadata-local.xml
deleted file mode 100644
index 8a36ef3..0000000
--- a/examples/basys.examples/repo/basys/basys.sdk/maven-metadata-local.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<metadata>
- <groupId>basys</groupId>
- <artifactId>basys.sdk</artifactId>
- <versioning>
- <versions>
- <version>0.0.1-SNAPSHOT</version>
- </versions>
- <lastUpdated>20190718071927</lastUpdated>
- </versioning>
-</metadata>