Skip to content
Snippets Groups Projects
Commit 2f812846 authored by Tor-Einar Skog's avatar Tor-Einar Skog
Browse files

feat: Compiles, deploys and works (but with occasional errors)

parent 1438a566
Branches
No related tags found
1 merge request!192Wildfly 34
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <project xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 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> <modelVersion>4.0.0</modelVersion>
<groupId>no.nibio.vips.</groupId> <groupId>no.nibio.vips.</groupId>
...@@ -52,7 +53,7 @@ ...@@ -52,7 +53,7 @@
</repository> </repository>
</repositories> </repositories>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>javax.xml.bind</groupId> <groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId> <artifactId>jaxb-api</artifactId>
...@@ -76,10 +77,10 @@ ...@@ -76,10 +77,10 @@
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>jakarta.persistence</groupId> <groupId>jakarta.persistence</groupId>
<artifactId>jakarta.persistence-api</artifactId> <artifactId>jakarta.persistence-api</artifactId>
<version>3.2.0</version> <version>3.2.0</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
...@@ -89,9 +90,9 @@ ...@@ -89,9 +90,9 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.sun.mail</groupId> <groupId>com.sun.mail</groupId>
<artifactId>jakarta.mail</artifactId> <artifactId>jakarta.mail</artifactId>
<version>2.0.1</version> <version>2.0.1</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.jboss.resteasy</groupId> <groupId>org.jboss.resteasy</groupId>
...@@ -195,8 +196,18 @@ ...@@ -195,8 +196,18 @@
<groupId>org.postgresql</groupId> <groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId> <artifactId>postgresql</artifactId>
<version>42.7.4</version> <version>42.7.4</version>
<scope>provided</scope>
</dependency> </dependency>
<dependency>
<groupId>net.postgis</groupId>
<artifactId>postgis-jdbc</artifactId>
<version>2024.1.0</version>
</dependency>
<dependency>
<groupId>net.postgis</groupId>
<artifactId>postgis-geometry</artifactId>
<version>2024.1.0</version>
</dependency>
<dependency> <dependency>
<groupId>io.hypersistence</groupId> <groupId>io.hypersistence</groupId>
<artifactId>hypersistence-utils-hibernate-63</artifactId> <artifactId>hypersistence-utils-hibernate-63</artifactId>
...@@ -347,13 +358,14 @@ ...@@ -347,13 +358,14 @@
<goal>docs</goal> <goal>docs</goal>
</goals> </goals>
<configuration> <configuration>
<docsDir>${project.build.directory}/${project.build.finalName}/public/RESTdocs</docsDir> <docsDir>
${project.build.directory}/${project.build.finalName}/public/RESTdocs</docsDir>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>
\ No newline at end of file
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
<properties> <properties>
<!-- Hibernate properties --> <!-- Hibernate properties -->
<property name="hibernate.dialect" value="org.hibernate.spatial.dialect.postgis.PostgisPG10Dialect"/> <property name="hibernate.dialect" value="org.hibernate.spatial.dialect.postgis.PostgisPG10Dialect"/>
<property name="hibernate.show_sql" value="true"/> <property name="hibernate.show_sql" value="false"/>
<property name="hibernate.format_sql" value="true"/> <property name="hibernate.format_sql" value="true"/>
</properties> </properties>
</persistence-unit> </persistence-unit>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment