git-svn-id: http://maven-alfresco-archetypes.googlecode.com/svn/trunk/maven-alfresco-archetypes@80 04253f4f-3451-0410-a141-5562f1e59037
This commit is contained in:
damonrand
2008-10-16 15:14:03 +00:00
parent 2304f69361
commit c2783337dd
2 changed files with 286 additions and 281 deletions

View File

@@ -68,6 +68,11 @@
<alfresco.db.name>alf_jetty</alfresco.db.name> <alfresco.db.name>alf_jetty</alfresco.db.name>
<alfresco.db.username>alfresco</alfresco.db.username> <alfresco.db.username>alfresco</alfresco.db.username>
<alfresco.db.password>alfresco</alfresco.db.password> <alfresco.db.password>alfresco</alfresco.db.password>
<alfresco.version>2.1.0</alfresco.version>
<!-- Used for 2.1.0 -->
<desktop.action.package>org.alfresco.filesys.smb.server.repo.desk</desktop.action.package>
<!-- Used for 2.9.0+ -->
<!--desktop.action.package>org.alfresco.filesys.repo.desk</desktop.action.package-->
<log.dir></log.dir> <log.dir></log.dir>
<!-- Uncomment this property together with the <scm> section downwards <!-- Uncomment this property together with the <scm> section downwards
<svn.url> <svn.url>
@@ -127,32 +132,32 @@
<dependency> <dependency>
<groupId>alfresco.community</groupId> <groupId>alfresco.community</groupId>
<artifactId>alfresco</artifactId> <artifactId>alfresco</artifactId>
<version>2.1.0</version> <version>${alfresco.version}</version>
<type>war</type> <type>war</type>
</dependency> </dependency>
<!-- All provided libs (as contained in the war dependency) but useful for development (e.g. IDE configuration) --> <!-- All provided libs (as contained in the war dependency) but useful for development (e.g. IDE configuration) -->
<dependency> <dependency>
<groupId>alfresco.community</groupId> <groupId>alfresco.community</groupId>
<artifactId>alfresco-web-client</artifactId> <artifactId>alfresco-web-client</artifactId>
<version>2.1.0</version> <version>${alfresco.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>alfresco.community</groupId> <groupId>alfresco.community</groupId>
<artifactId>alfresco-core</artifactId> <artifactId>alfresco-core</artifactId>
<version>2.1.0</version> <version>${alfresco.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>alfresco.community</groupId> <groupId>alfresco.community</groupId>
<artifactId>alfresco-repository</artifactId> <artifactId>alfresco-repository</artifactId>
<version>2.1.0</version> <version>${alfresco.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>alfresco.community</groupId> <groupId>alfresco.community</groupId>
<artifactId>alfresco-remote-api</artifactId> <artifactId>alfresco-remote-api</artifactId>
<version>2.1.0</version> <version>${alfresco.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
@@ -164,7 +169,7 @@
<scope>runtime</scope> <scope>runtime</scope>
<type>amp</type> <type>amp</type>
<artifactId>recordsmanagement</artifactId> <artifactId>recordsmanagement</artifactId>
<version>2.1.0</version> <version>${alfresco.version}</version>
<groupId>org.alfresco.community</groupId> <groupId>org.alfresco.community</groupId>
</dependency> </dependency>
--> -->

View File

@@ -117,12 +117,12 @@
<webpath>http://${localname}/</webpath> <webpath>http://${localname}/</webpath>
</global> </global>
<action> <action>
<class>org.alfresco.filesys.smb.server.repo.desk.CheckInOutDesktopAction</class> <class>${desktop.action.package}.CheckInOutDesktopAction</class>
<name>CheckInOut</name> <name>CheckInOut</name>
<filename>__CheckInOut.exe</filename> <filename>__CheckInOut.exe</filename>
</action> </action>
<action> <action>
<class>org.alfresco.filesys.smb.server.repo.desk.JavaScriptDesktopAction</class> <class>${desktop.action.package}.JavaScriptDesktopAction</class>
<name>JavaScriptURL</name> <name>JavaScriptURL</name>
<filename>__ShowDetails.exe</filename> <filename>__ShowDetails.exe</filename>
<script>alfresco/desktop/showDetails.js</script> <script>alfresco/desktop/showDetails.js</script>