-
Notifications
You must be signed in to change notification settings - Fork 15
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 #323 from camunda-community-hub/134-spring-graphql
feat: Migrate to Spring-GraphQL
- Loading branch information
Showing
51 changed files
with
1,164 additions
and
961 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
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,131 +1,132 @@ | ||
<?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.zeebe.zeeqs</groupId> | ||
<artifactId>zeeqs-root</artifactId> | ||
<version>2.6.1-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>app</artifactId> | ||
<name>ZeeQS - App</name> | ||
|
||
<dependencies> | ||
|
||
<dependency> | ||
<groupId>io.zeebe.zeeqs</groupId> | ||
<artifactId>graphql-api</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>io.zeebe.zeeqs</groupId> | ||
<artifactId>hazelcast-importer</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-web</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.h2database</groupId> | ||
<artifactId>h2</artifactId> | ||
<scope>runtime</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.postgresql</groupId> | ||
<artifactId>postgresql</artifactId> | ||
<scope>runtime</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-test</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
<build> | ||
<finalName>zeeqs-${project.version}</finalName> | ||
|
||
<plugins> | ||
<plugin> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-maven-plugin</artifactId> | ||
<version>2.7.6</version> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>repackage</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
|
||
</build> | ||
|
||
<profiles> | ||
<profile> | ||
<id>jib-local</id> | ||
<activation> | ||
<activeByDefault>true</activeByDefault> | ||
</activation> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.google.cloud.tools</groupId> | ||
<artifactId>jib-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>build-local</id> | ||
<phase>verify</phase> | ||
<goals> | ||
<goal>dockerBuild</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
<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.zeebe.zeeqs</groupId> | ||
<artifactId>zeeqs-root</artifactId> | ||
<version>2.6.1-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>app</artifactId> | ||
<name>ZeeQS - App</name> | ||
|
||
<dependencies> | ||
|
||
<dependency> | ||
<groupId>io.zeebe.zeeqs</groupId> | ||
<artifactId>graphql-api</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>io.zeebe.zeeqs</groupId> | ||
<artifactId>hazelcast-importer</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-web</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.h2database</groupId> | ||
<artifactId>h2</artifactId> | ||
<scope>runtime</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.postgresql</groupId> | ||
<artifactId>postgresql</artifactId> | ||
<scope>runtime</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-test</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
<build> | ||
<finalName>zeeqs-${project.version}</finalName> | ||
|
||
<profile> | ||
<id>jib-multiplatform</id> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.google.cloud.tools</groupId> | ||
<artifactId>jib-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<phase>deploy</phase> | ||
<goals> | ||
<goal>build</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration combine.self="append" combine.children="append"> | ||
<from> | ||
<platforms> | ||
<platform> | ||
<architecture>amd64</architecture> | ||
<os>linux</os> | ||
</platform> | ||
<platform> | ||
<architecture>arm64</architecture> | ||
<os>linux</os> | ||
</platform> | ||
</platforms> | ||
</from> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-maven-plugin</artifactId> | ||
<version>2.7.6</version> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>repackage</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
|
||
</build> | ||
|
||
<profiles> | ||
<profile> | ||
<id>jib-local</id> | ||
<activation> | ||
<activeByDefault>true</activeByDefault> | ||
</activation> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.google.cloud.tools</groupId> | ||
<artifactId>jib-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>build-local</id> | ||
<phase>verify</phase> | ||
<goals> | ||
<goal>dockerBuild</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
|
||
<profile> | ||
<id>jib-multiplatform</id> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.google.cloud.tools</groupId> | ||
<artifactId>jib-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<phase>deploy</phase> | ||
<goals> | ||
<goal>build</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration combine.self="append" combine.children="append"> | ||
<from> | ||
<platforms> | ||
<platform> | ||
<architecture>amd64</architecture> | ||
<os>linux</os> | ||
</platform> | ||
<platform> | ||
<architecture>arm64</architecture> | ||
<os>linux</os> | ||
</platform> | ||
</platforms> | ||
</from> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
|
||
</project> |
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
Oops, something went wrong.