Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
2 changes: 1 addition & 1 deletion api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@

<plugin>
<groupId>io.serverlessworkflow</groupId>
<artifactId>jackson-generator</artifactId>
<artifactId>serverless-workflow-jackson-generator</artifactId>
<version>${project.version}</version>
<dependencies/>
<configuration>
Expand Down
5 changes: 3 additions & 2 deletions jackson-generator/pom.xml → generators/jackson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
<packaging>maven-plugin</packaging>
<parent>
<groupId>io.serverlessworkflow</groupId>
<artifactId>serverlessworkflow-parent</artifactId>
<artifactId>serverlessworkflow-generators</artifactId>
<version>8.0.0-SNAPSHOT</version>
</parent>
<artifactId>jackson-generator</artifactId>
<artifactId>serverless-workflow-jackson-generator</artifactId>
<name>Serverless Workflow :: Generator:: Jackson</name>
<properties>
<maven-plugin-tools.version>3.15.1</maven-plugin-tools.version>
</properties>
Expand Down
15 changes: 15 additions & 0 deletions generators/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<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>io.serverlessworkflow</groupId>
<artifactId>serverlessworkflow-parent</artifactId>
<version>8.0.0-SNAPSHOT</version>
</parent>
<artifactId>serverlessworkflow-generators</artifactId>
<name>Serverless Workflow :: Generators</name>
<packaging>pom</packaging>
<modules>
<module>jackson</module>
<module>types</module>
</modules>
</project>
6 changes: 3 additions & 3 deletions custom-generator/pom.xml → generators/types/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.serverlessworkflow</groupId>
<artifactId>serverlessworkflow-parent</artifactId>
<artifactId>serverlessworkflow-generators</artifactId>
<version>8.0.0-SNAPSHOT</version>
</parent>
<artifactId>serverless-workflow-custom-generator</artifactId>
<name>Serverless Workflow :: Custom Generator</name>
<artifactId>serverless-workflow-types-generator</artifactId>
<name>Serverless Workflow :: Generator:: Types</name>
<dependencies>
<dependency>
<groupId>org.jsonschema2pojo</groupId>
Expand Down
9 changes: 4 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,11 @@

<modules>
<module>api</module>
<module>custom-generator</module>
<module>impl</module>
<module>serverlessworkflow-types</module>
<module>serverlessworkflow-annotations</module>
<module>jackson-generator</module>
<module>serverlessworkflow-serialization</module>
<module>types</module>
<module>annotations</module>
<module>generators</module>
<module>serialization</module>
</modules>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<version>8.0.0-SNAPSHOT</version>
</parent>
<artifactId>serverlessworkflow-serialization</artifactId>
<name>Serverless Workflow :: Serialization</name>
<dependencies>
<dependency>
<groupId>io.serverlessworkflow</groupId>
Expand Down
2 changes: 1 addition & 1 deletion serverlessworkflow-types/pom.xml → types/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<dependencies>
<dependency>
<groupId>io.serverlessworkflow</groupId>
<artifactId>serverless-workflow-custom-generator</artifactId>
<artifactId>serverless-workflow-types-generator</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
Expand Down