mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
Cleanup unused resources
This commit is contained in:
@@ -38,7 +38,6 @@
|
|||||||
<maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
|
<maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
|
||||||
<maven-release.version>2.5.3</maven-release.version>
|
<maven-release.version>2.5.3</maven-release.version>
|
||||||
<org.glassfish.version>1.0.4</org.glassfish.version>
|
<org.glassfish.version>1.0.4</org.glassfish.version>
|
||||||
<maven-remote-resources.version>1.6.0</maven-remote-resources.version>
|
|
||||||
<commons-lang3.version>3.8</commons-lang3.version>
|
<commons-lang3.version>3.8</commons-lang3.version>
|
||||||
<scribejava-apis.version>6.5.1</scribejava-apis.version>
|
<scribejava-apis.version>6.5.1</scribejava-apis.version>
|
||||||
<test.exclude />
|
<test.exclude />
|
||||||
@@ -107,27 +106,6 @@
|
|||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-remote-resources-plugin</artifactId>
|
|
||||||
<version>${maven-remote-resources.version}</version>
|
|
||||||
<configuration>
|
|
||||||
<includes>
|
|
||||||
<include>shared-resources/**/*</include>
|
|
||||||
</includes>
|
|
||||||
<resourceBundles>
|
|
||||||
<resourceBundle>org.alfresco.tas:utility:${tas.utility.version}</resourceBundle>
|
|
||||||
</resourceBundles>
|
|
||||||
</configuration>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<goals>
|
|
||||||
<goal>process</goal>
|
|
||||||
<goal>bundle</goal>
|
|
||||||
</goals>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-javadoc-plugin</artifactId>
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
@@ -1,63 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
|
|
||||||
<suite name="REST API" parallel="false" preserve-order="true" thread-count="1">
|
|
||||||
<listeners>
|
|
||||||
<listener class-name="org.alfresco.utility.report.HtmlReportListener"></listener>
|
|
||||||
<listener class-name="org.alfresco.utility.testrail.TestRailExecutorListener"></listener>
|
|
||||||
<listener class-name="org.alfresco.utility.testng.OSTestMethodSelector"></listener>
|
|
||||||
</listeners>
|
|
||||||
<test name="RestAPI">
|
|
||||||
<method-selectors>
|
|
||||||
<!-- -DincludeGroups=sanity,comments,people -DexcludeGroups=networks,othergroup -DrunBugs=true-->
|
|
||||||
<method-selector>
|
|
||||||
<script language="beanshell"><![CDATA[
|
|
||||||
includedGroups = System.getProperty("includeGroups");
|
|
||||||
excludedGroups = System.getProperty("excludeGroups");
|
|
||||||
runBugs = System.getProperty("runBugs");
|
|
||||||
|
|
||||||
if((runBugs != null))
|
|
||||||
{
|
|
||||||
bugAnnotated = method.getAnnotation(org.alfresco.utility.report.Bug.class);
|
|
||||||
|
|
||||||
if (bugAnnotated != null && runBugs.equals("false") )
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((includedGroups == null) || (includedGroups.isEmpty())) {
|
|
||||||
return false;
|
|
||||||
} else
|
|
||||||
{
|
|
||||||
StringTokenizer includedGroupsList = new StringTokenizer(includedGroups, ",");
|
|
||||||
|
|
||||||
if ((excludedGroups != null)) {
|
|
||||||
StringTokenizer excludedGroupsList = new StringTokenizer(excludedGroups, ",");
|
|
||||||
while (excludedGroupsList.hasMoreTokens()) {
|
|
||||||
exG = excludedGroupsList.nextToken();
|
|
||||||
if (groups.containsKey(exG))
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
while (includedGroupsList.hasMoreTokens()) {
|
|
||||||
grp = includedGroupsList.nextToken();
|
|
||||||
if ((groups.containsKey(grp)))
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
]]>
|
|
||||||
</script>
|
|
||||||
</method-selector>
|
|
||||||
</method-selectors>
|
|
||||||
<packages>
|
|
||||||
<package name="org.alfresco.rest.*" />
|
|
||||||
</packages>
|
|
||||||
|
|
||||||
</test> <!-- Test -->
|
|
||||||
</suite> <!-- Suite -->
|
|
@@ -1,18 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
|
|
||||||
<suite name="REST API">
|
|
||||||
<listeners>
|
|
||||||
<listener class-name="org.alfresco.utility.report.TestCountListener"></listener>
|
|
||||||
</listeners>
|
|
||||||
<test name="RestAPITests">
|
|
||||||
<groups>
|
|
||||||
<run>
|
|
||||||
<exclude name="demo" />
|
|
||||||
<exclude name="unit" />
|
|
||||||
</run>
|
|
||||||
</groups>
|
|
||||||
<packages>
|
|
||||||
<package name="org.alfresco.rest.*"></package>
|
|
||||||
</packages>
|
|
||||||
</test> <!-- Test -->
|
|
||||||
</suite> <!-- Suite -->
|
|
@@ -1 +0,0 @@
|
|||||||
∮ E⋅da = Q
|
|
Binary file not shown.
Before Width: | Height: | Size: 568 KiB |
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
<html><head><title>aegif Mind Share Leader Generating New Paradigms by aegif corporation</title></head><body><p> Test html</p></body></html></body></html>
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 11 KiB |
Binary file not shown.
Before Width: | Height: | Size: 26 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 28 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,7 +0,0 @@
|
|||||||
The quick brown fox jumps over the lazy dog
|
|
||||||
|
|
||||||
Le renard brun rapide saute par-dessus le chien paresseux
|
|
||||||
|
|
||||||
Der schnelle braune Fuchs springt über den faulen Hund
|
|
||||||
|
|
||||||
براون وكس السريع يقفز فوق الكلب كسالي
|
|
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
Sample text.
|
|
Reference in New Issue
Block a user