generated from axonivy-market/market-product
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from axonivy-market/srf-weather-connector-mock
XIVY-12055 Moved Mock-API to demo-project and updated Readme
- Loading branch information
Showing
40 changed files
with
104 additions
and
89 deletions.
There are no files selected for viewing
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
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
20 changes: 0 additions & 20 deletions
20
srf-weather-connector-WebTest/.settings/org.eclipse.wst.common.component
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
srf-weather-connector-demo/.settings/ch.ivyteam.ivy.designer.prefs
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
ch.ivyteam.ivy.designer.preferences.DataClassPreferencePage\:DEFAULT_DATA_CLASS=com.axonivy.connector.srf.weather.connector.demo.Data | ||
ch.ivyteam.ivy.designer.preferences.DataClassPreferencePage\:DEFAULT_NAMESPACE=com.axonivy.connector.srf.weather.connector.demo | ||
ch.ivyteam.ivy.project.preferences\:PRIMEFACES_VERSION=11 | ||
ch.ivyteam.ivy.project.preferences\:PROJECT_VERSION=111000 | ||
ch.ivyteam.ivy.project.preferences\:PROJECT_VERSION=100000 | ||
eclipse.preferences.version=1 |
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
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
File renamed without changes.
File renamed without changes.
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
2 changes: 1 addition & 1 deletion
2
srf-weather-connector-test/.settings/ch.ivyteam.ivy.designer.prefs
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
ch.ivyteam.ivy.designer.preferences.DataClassPreferencePage\:DEFAULT_DATA_CLASS=com.axonivy.connector.srf.weather.test.Data | ||
ch.ivyteam.ivy.designer.preferences.DataClassPreferencePage\:DEFAULT_NAMESPACE=com.axonivy.connector.srf.weather.test | ||
ch.ivyteam.ivy.project.preferences\:PRIMEFACES_VERSION=11 | ||
ch.ivyteam.ivy.project.preferences\:PROJECT_VERSION=111000 | ||
ch.ivyteam.ivy.project.preferences\:PROJECT_VERSION=100000 | ||
eclipse.preferences.version=1 |
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 |
---|---|---|
@@ -1,44 +1,50 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>com.axonivy.connector.srf.weather</groupId> | ||
<artifactId>srf-weather-connector-test</artifactId> | ||
<version>10.0.2-SNAPSHOT</version> | ||
<packaging>iar</packaging> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.axonivy.ivy.test</groupId> | ||
<artifactId>unit-tester</artifactId> | ||
<version>10.0.0</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.axonivy.connector.srf.weather</groupId> | ||
<artifactId>srf-weather-connector</artifactId> | ||
<version>${project.version}</version> | ||
<type>iar</type> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<testSourceDirectory>src_test</testSourceDirectory> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<version>3.0.0-M1</version> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.axonivy.ivy.ci</groupId> | ||
<artifactId>project-build-plugin</artifactId> | ||
<version>10.0.6</version> | ||
<extensions>true</extensions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>com.axonivy.connector.srf.weather</groupId> | ||
<artifactId>srf-weather-connector-test</artifactId> | ||
<version>10.0.2-SNAPSHOT</version> | ||
<packaging>iar</packaging> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.axonivy.ivy.test</groupId> | ||
<artifactId>unit-tester</artifactId> | ||
<version>10.0.0</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.axonivy.connector.srf.weather</groupId> | ||
<artifactId>srf-weather-connector</artifactId> | ||
<version>${project.version}</version> | ||
<type>iar</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.axonivy.connector.srf.weather</groupId> | ||
<artifactId>srf-weather-connector-demo</artifactId> | ||
<version>10.0.2-SNAPSHOT</version> | ||
<type>iar</type> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<testSourceDirectory>src_test</testSourceDirectory> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<version>3.0.0-M1</version> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.axonivy.ivy.ci</groupId> | ||
<artifactId>project-build-plugin</artifactId> | ||
<version>10.0.6</version> | ||
<extensions>true</extensions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 4 additions & 0 deletions
4
srf-weather-connector-webTest/.settings/org.eclipse.m2e.core.prefs
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,4 @@ | ||
activeProfiles= | ||
eclipse.preferences.version=1 | ||
resolveWorkspaceProjects=true | ||
version=1 |
20 changes: 20 additions & 0 deletions
20
srf-weather-connector-webTest/.settings/org.eclipse.wst.common.component
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,20 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project-modules id="moduleCoreId" | ||
project-version="1.5.0"> | ||
<wb-module deploy-name="srf-weather-connector-webTest"> | ||
<wb-resource deploy-path="/" source-path="/webContent" | ||
tag="defaultRootSource" /> | ||
<wb-resource deploy-path="/WEB-INF/classes" | ||
source-path="/src" /> | ||
<wb-resource deploy-path="/WEB-INF/classes" | ||
source-path="/src_hd" /> | ||
<wb-resource deploy-path="/WEB-INF/classes" | ||
source-path="/src_wsproc" /> | ||
<wb-resource deploy-path="/WEB-INF/classes" | ||
source-path="/src_dataClasses" /> | ||
<property name="java-output-path" | ||
value="/srf-weather-connector-webTest/target/classes" /> | ||
<property name="context-root" | ||
value="srf-weather-connector-webTest" /> | ||
</wb-module> | ||
</project-modules> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
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
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
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