Skip to content

Commit

Permalink
Migrate project to match structure in ardoco core
Browse files Browse the repository at this point in the history
  • Loading branch information
dfuchss committed Aug 29, 2023
1 parent 62ef188 commit 807a453
Show file tree
Hide file tree
Showing 48 changed files with 54 additions and 1,328 deletions.
1 change: 1 addition & 0 deletions framework/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@

<modules>
<module>common</module>
<module>text-provider-json</module>
</modules>
</project>
File renamed without changes.
53 changes: 53 additions & 0 deletions framework/text-provider-json/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.github.ardoco.core</groupId>
<artifactId>framework</artifactId>
<version>${revision}</version>
</parent>

<groupId>io.github.ardoco</groupId>
<artifactId>text-provider-json</artifactId>
<packaging>jar</packaging>
<name>TextProvider JSON</name>

<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.networknt</groupId>
<artifactId>json-schema-validator</artifactId>
<version>1.0.86</version>
</dependency>
<dependency>
<groupId>io.github.ardoco.core</groupId>
<artifactId>common</artifactId>
<version>${ardoco.version}</version>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-json-schema</artifactId>
<version>4.4.4</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
6 changes: 0 additions & 6 deletions framework/textprovider-json/.editorconfig

This file was deleted.

121 changes: 0 additions & 121 deletions framework/textprovider-json/.gitattributes

This file was deleted.

1 change: 0 additions & 1 deletion framework/textprovider-json/.github/CODEOWNERS

This file was deleted.

This file was deleted.

29 changes: 0 additions & 29 deletions framework/textprovider-json/.github/workflows/deploy.yml

This file was deleted.

32 changes: 0 additions & 32 deletions framework/textprovider-json/.github/workflows/format.yml

This file was deleted.

This file was deleted.

14 changes: 0 additions & 14 deletions framework/textprovider-json/.github/workflows/maven-release.yml

This file was deleted.

11 changes: 0 additions & 11 deletions framework/textprovider-json/.github/workflows/release.yml

This file was deleted.

21 changes: 0 additions & 21 deletions framework/textprovider-json/.github/workflows/sonarcloud.yml

This file was deleted.

25 changes: 0 additions & 25 deletions framework/textprovider-json/.github/workflows/verify.yml

This file was deleted.

Loading

0 comments on commit 807a453

Please sign in to comment.