Skip to content

Commit

Permalink
- Connector was fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
alegauss committed Sep 17, 2024
1 parent abc1185 commit 60f0ba0
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ public class TurAemTargetAttribute implements Serializable {

private String name;

@Builder.Default
@OneToMany(mappedBy = "turAemTargetAttribute", orphanRemoval = true, fetch = FetchType.LAZY)
@Cascade({org.hibernate.annotations.CascadeType.ALL})
@OnDelete(action = OnDeleteAction.CASCADE)
Expand Down
1 change: 1 addition & 0 deletions turing-connector/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target/
39 changes: 36 additions & 3 deletions turing-connector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,42 @@
<parent>
<groupId>com.viglet.turing</groupId>
<artifactId>turing</artifactId>
<version>0.3.9</version>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>turing-connector</artifactId>
<name>Archetype - turing-connector</name>
<url>http://maven.apache.org</url>
<packaging>jar</packaging>
<name>Turing Connector</name>
<description>Turing Connector</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
</project>
7 changes: 7 additions & 0 deletions turing-db/db-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,13 @@
<exclude>META-INF/services/javax.annotation.processing.Processor</exclude>
</excludes>
</filter>
<filter>
<artifact>org.springframework:spring-web</artifact>
<excludes>
<exclude>META-INF/services/jakarta.servlet.ServletContainerInitializer</exclude>
</excludes>
</filter>

<filter>
<artifact>*:poi-scratchpad</artifact>
<excludes>
Expand Down

0 comments on commit 60f0ba0

Please sign in to comment.