Various fixes
parent
8089df6395
commit
7f87385671
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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")
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
org.scientificcms.publications.SciPublications
|
||||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
org.scientificcms.contenttypes.sci-types-project
|
||||
org.scientificcms.contenttypes.sciproject.SciProjectModule
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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 -->
|
||||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue