mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
Merge branch 'master' of https://gitlab.alfresco.com/records-management/records-management into RM-4396_UseModelInsteadJsonObject
This commit is contained in:
@@ -14,6 +14,8 @@
|
|||||||
<properties>
|
<properties>
|
||||||
<alfresco.rm.share>alfresco-rm-community-share</alfresco.rm.share>
|
<alfresco.rm.share>alfresco-rm-community-share</alfresco.rm.share>
|
||||||
<alfresco.rm.repo>alfresco-rm-community-repo</alfresco.rm.repo>
|
<alfresco.rm.repo>alfresco-rm-community-repo</alfresco.rm.repo>
|
||||||
|
<tas.restapi.version>5.2.0-0</tas.restapi.version>
|
||||||
|
<fluent.json.version>2.0.0</fluent.json.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
@@ -34,18 +36,18 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco.tas</groupId>
|
<groupId>org.alfresco.tas</groupId>
|
||||||
<artifactId>restapi-test</artifactId>
|
<artifactId>restapi-test</artifactId>
|
||||||
<version>2.0.0</version>
|
<version>${tas.restapi.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.alfresco.tas</groupId>
|
<groupId>org.alfresco.tas</groupId>
|
||||||
<artifactId>restapi-test</artifactId>
|
<artifactId>restapi-test</artifactId>
|
||||||
<version>2.0.0</version>
|
<version>${tas.restapi.version}</version>
|
||||||
<type>test-jar</type>
|
<type>test-jar</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jglue.fluent-json</groupId>
|
<groupId>org.jglue.fluent-json</groupId>
|
||||||
<artifactId>fluent-json</artifactId>
|
<artifactId>fluent-json</artifactId>
|
||||||
<version>2.0.0</version>
|
<version>${fluent.json.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
|
@@ -61,7 +61,8 @@ import org.testng.annotations.BeforeClass;
|
|||||||
* @since 2.6
|
* @since 2.6
|
||||||
*/
|
*/
|
||||||
@Configuration
|
@Configuration
|
||||||
@PropertySource("classpath:default.properties")
|
@PropertySource(value = {"classpath:default.properties", "classpath:config.properties"})
|
||||||
|
@PropertySource(value = "classpath:module.properties", ignoreResourceNotFound = true)
|
||||||
@PropertySource(value = "classpath:local.properties", ignoreResourceNotFound = true)
|
@PropertySource(value = "classpath:local.properties", ignoreResourceNotFound = true)
|
||||||
public class BaseRestTest extends RestTest
|
public class BaseRestTest extends RestTest
|
||||||
{
|
{
|
||||||
|
@@ -0,0 +1,2 @@
|
|||||||
|
alfresco.server=localhost
|
||||||
|
rest.rmPath=alfresco/api/-default-/public/ig/versions/1
|
@@ -1,25 +0,0 @@
|
|||||||
#########################################################################
|
|
||||||
# Original property values from default.properties #
|
|
||||||
#########################################################################
|
|
||||||
|
|
||||||
# Dataprep related
|
|
||||||
alfresco.scheme=http
|
|
||||||
alfresco.server=localhost
|
|
||||||
alfresco.port=8080
|
|
||||||
|
|
||||||
# Credentials
|
|
||||||
admin.user=admin
|
|
||||||
admin.password=admin
|
|
||||||
|
|
||||||
# Rest related
|
|
||||||
rest.basePath=alfresco/api/-default-/public/alfresco/versions/1
|
|
||||||
rest.workflowPath=alfresco/api/-default-/public/workflow/versions/1
|
|
||||||
|
|
||||||
# Database Section
|
|
||||||
db.url = jdbc:mysql://${alfresco.server}:3306/alfresco
|
|
||||||
db.username = alfresco
|
|
||||||
db.password = alfresco
|
|
||||||
|
|
||||||
#########################################################################
|
|
||||||
|
|
||||||
rest.rmPath=alfresco/api/-default-/public/ig/versions/1
|
|
Reference in New Issue
Block a user