Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Open Subsurface Data Universe Software
Platform
System
Schema
Commits
0f99d3f8
Commit
0f99d3f8
authored
Dec 15, 2020
by
ethiraj krishnamanaidu
Browse files
Merge branch 'feat/aws-impl' into 'master'
Feat/aws impl See merge request
!61
parents
b0a96be9
80bfc8a1
Pipeline
#19469
failed with stages
in 46 minutes and 39 seconds
Changes
4
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
0f99d3f8
...
...
@@ -37,3 +37,5 @@ target/
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
*local.properties
dist/
\ No newline at end of file
testing/pom.xml
View file @
0f99d3f8
...
...
@@ -19,7 +19,6 @@
<modules>
<module>
schema-test-core
</module>
<module>
schema-test-aws
</module>
<module>
schema-test-gcp
</module>
</modules>
...
...
testing/schema-test-aws/pom.xml
deleted
100644 → 0
View file @
b0a96be9
<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>
<parent>
<groupId>
org.opengroup.osdu
</groupId>
<artifactId>
os-schema-test
</artifactId>
<version>
0.0.1
</version>
<relativePath>
../pom.xml
</relativePath>
</parent>
<groupId>
org.opengroup.osdu
</groupId>
<artifactId>
os-schema-test-aws
</artifactId>
<version>
0.0.1
</version>
<packaging>
jar
</packaging>
<name>
schema-test-aws
</name>
<description>
AWS implementation of test project for schema service
</description>
</project>
\ No newline at end of file
testing/schema-test-core/pom.xml
View file @
0f99d3f8
...
...
@@ -110,8 +110,34 @@
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-failsafe-plugin
</artifactId>
<version>
3.0.0-M3
</version>
<configuration>
<excludes>
<exclude>
none
</exclude>
</excludes>
<includes>
<include>
org.opengroup.osdu.schema.runner.SchemaServiceTestsRunner
</include>
</includes>
</configuration>
<executions>
<execution>
<id>
integration-test
</id>
<goals>
<goal>
integration-test
</goal>
<goal>
verify
</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!-- This runs the integration-test goal thrice -->
<!--<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
...
...
@@ -166,5 +192,5 @@
</executions>
</plugin>
</plugins>
</build>
</build>
-->
</project>
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment