Various fixes

pull/1/head
Jens Pelzetter 2020-01-26 16:32:10 +01:00
parent 8089df6395
commit 7f87385671
9 changed files with 4461 additions and 7 deletions

View File

@ -48,6 +48,7 @@
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
@ -59,6 +60,7 @@
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<scope>provided</scope>
</dependency>
<dependency>

View File

@ -32,7 +32,7 @@ public class UnPublished extends Publication {
@Column(name = "PLACE", length = 2048)
private String place;
@Column(name = "PLACE", length = 512)
@Column(name = "NUMBER", length = 512)
private String number;
@Column(name = "NUMBER_OF_PAGES")

View File

@ -0,0 +1 @@
org.scientificcms.publications.SciPublications

View File

@ -48,6 +48,7 @@
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
@ -59,6 +60,7 @@
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<scope>provided</scope>
</dependency>
<dependency>

View File

@ -1 +1 @@
org.scientificcms.contenttypes.sci-types-project
org.scientificcms.contenttypes.sciproject.SciProjectModule

File diff suppressed because it is too large Load Diff

View File

@ -61,7 +61,7 @@
</dependencies>
<build>
<finalName>scientificcms-bundle-devel-wildfly</finalName>
<finalName>scientificcms-bundle-devel-wildfly-${project.version}</finalName>
<resources>
<resource>
@ -164,7 +164,7 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<webResources>
<resource>
<directory>src/main/resources</directory>

View File

@ -21,10 +21,11 @@
<jta-data-source>java:/comp/env/jdbc/scientificcms/db</jta-data-source>
<!-- <jar-file>lib/ccm-core-7.0.0-SNAPSHOT.jar</jar-file>
<jar-file>lib/ccm-core-7.0.0-SNAPSHOT.jar</jar-file>
<jar-file>lib/ccm-cms-7.0.0-SNAPSHOT.jar</jar-file>
<jar-file>lib/ccm-shortcuts-7.0.0-SNAPSHOT.jar</jar-file>-->
<jar-file>lib/ccm-shortcuts-7.0.0-SNAPSHOT.jar</jar-file>
<jar-file>lib/sci-publications-7.0.0-SNAPSHOT.jar</jar-file>
<jar-file>lib/sci-types-project-7.0.0-SNAPSHOT.jar</jar-file>
<properties>
<!-- Properties for Hibernate -->

View File

@ -39,11 +39,13 @@
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<scope>provided</scope>
</dependency>
<dependency>