Various fixes
parent
8089df6395
commit
7f87385671
|
|
@ -48,6 +48,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.hibernate</groupId>
|
<groupId>org.hibernate</groupId>
|
||||||
<artifactId>hibernate-core</artifactId>
|
<artifactId>hibernate-core</artifactId>
|
||||||
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
@ -59,6 +60,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.hibernate</groupId>
|
<groupId>org.hibernate</groupId>
|
||||||
<artifactId>hibernate-validator</artifactId>
|
<artifactId>hibernate-validator</artifactId>
|
||||||
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,7 @@ public class UnPublished extends Publication {
|
||||||
@Column(name = "PLACE", length = 2048)
|
@Column(name = "PLACE", length = 2048)
|
||||||
private String place;
|
private String place;
|
||||||
|
|
||||||
@Column(name = "PLACE", length = 512)
|
@Column(name = "NUMBER", length = 512)
|
||||||
private String number;
|
private String number;
|
||||||
|
|
||||||
@Column(name = "NUMBER_OF_PAGES")
|
@Column(name = "NUMBER_OF_PAGES")
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
org.scientificcms.publications.SciPublications
|
||||||
|
|
@ -48,6 +48,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.hibernate</groupId>
|
<groupId>org.hibernate</groupId>
|
||||||
<artifactId>hibernate-core</artifactId>
|
<artifactId>hibernate-core</artifactId>
|
||||||
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
@ -59,6 +60,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.hibernate</groupId>
|
<groupId>org.hibernate</groupId>
|
||||||
<artifactId>hibernate-validator</artifactId>
|
<artifactId>hibernate-validator</artifactId>
|
||||||
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<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>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<finalName>scientificcms-bundle-devel-wildfly</finalName>
|
<finalName>scientificcms-bundle-devel-wildfly-${project.version}</finalName>
|
||||||
|
|
||||||
<resources>
|
<resources>
|
||||||
<resource>
|
<resource>
|
||||||
|
|
@ -164,7 +164,7 @@
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-war-plugin</artifactId>
|
<artifactId>maven-war-plugin</artifactId>
|
||||||
<configuration>
|
<configuration>
|
||||||
|
|
||||||
<webResources>
|
<webResources>
|
||||||
<resource>
|
<resource>
|
||||||
<directory>src/main/resources</directory>
|
<directory>src/main/resources</directory>
|
||||||
|
|
|
||||||
|
|
@ -21,10 +21,11 @@
|
||||||
|
|
||||||
<jta-data-source>java:/comp/env/jdbc/scientificcms/db</jta-data-source>
|
<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-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>
|
||||||
<!-- Properties for Hibernate -->
|
<!-- Properties for Hibernate -->
|
||||||
|
|
@ -39,11 +39,13 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.hibernate</groupId>
|
<groupId>org.hibernate</groupId>
|
||||||
<artifactId>hibernate-core</artifactId>
|
<artifactId>hibernate-core</artifactId>
|
||||||
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.hibernate</groupId>
|
<groupId>org.hibernate</groupId>
|
||||||
<artifactId>hibernate-validator</artifactId>
|
<artifactId>hibernate-validator</artifactId>
|
||||||
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue