Remove unused directories
authorMathieu Baudier <mbaudier@argeo.org>
Tue, 17 Jul 2012 14:18:38 +0000 (14:18 +0000)
committerMathieu Baudier <mbaudier@argeo.org>
Tue, 17 Jul 2012 14:18:38 +0000 (14:18 +0000)
git-svn-id: https://svn.argeo.org/slc/trunk@5499 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc

buildSite.sh [deleted file]
legacy/buildSite.sh [new file with mode: 0755]
modules/agent/pom.xml [deleted file]
modules/server/.settings/org.eclipse.jdt.core.prefs [deleted file]
modules/server/.settings/org.maven.ide.eclipse.prefs [deleted file]
modules/server/pom.xml [deleted file]

diff --git a/buildSite.sh b/buildSite.sh
deleted file mode 100755 (executable)
index 7992e74..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/bin/sh
-
-#
-# To be overridden
-#
-TO=mathieu.baudier@gmail.com
-PROFILES=$1
-
-#
-# Code
-#
-BUILD_DIR=`pwd`
-HOSTNAME=`hostname -f`
-DATE=`date -u`
-EXIT_STATUS=0
-
-export MAVEN_OPTS=-Xmx256m
-export PATH=$PATH:/usr/local/bin
-
-# BUILD
-/usr/local/bin/mvn -up --fail-at-end deploy $PROFILES 2>&1 | tee deploy.log
-EXIT_STATUS=$PIPESTATUS
-if [ $EXIT_STATUS -eq 0 ]
-then
-       mail -s "Build@$HOSTNAME SUCCESS - $DATE - $BUILD_DIR" $TO < pom.xml
-else
-       mail -s "Build@$HOSTNAME FAILURE - $DATE - $BUILD_DIR" $TO < deploy.log
-fi
-
-# SDK
-#cd dist/org.argeo.slc.sdk
-#/usr/local/bin/mvn deploy
-#cd ../..
-
-# SITE
-/usr/local/bin/mvn -up --fail-at-end site-deploy $PROFILES 2>&1 | tee siteGeneration.log
-if [ $PIPESTATUS -eq 0 ]
-then
-       echo No need to send email for successful site generation
-else
-       mail -s "SiteGeneration@$HOSTNAME FAILURE - $DATE - $BUILD_DIR" $TO < siteGeneration.log
-fi
-
-
-exit $EXIT_STATUS
diff --git a/legacy/buildSite.sh b/legacy/buildSite.sh
new file mode 100755 (executable)
index 0000000..7992e74
--- /dev/null
@@ -0,0 +1,45 @@
+#!/bin/sh
+
+#
+# To be overridden
+#
+TO=mathieu.baudier@gmail.com
+PROFILES=$1
+
+#
+# Code
+#
+BUILD_DIR=`pwd`
+HOSTNAME=`hostname -f`
+DATE=`date -u`
+EXIT_STATUS=0
+
+export MAVEN_OPTS=-Xmx256m
+export PATH=$PATH:/usr/local/bin
+
+# BUILD
+/usr/local/bin/mvn -up --fail-at-end deploy $PROFILES 2>&1 | tee deploy.log
+EXIT_STATUS=$PIPESTATUS
+if [ $EXIT_STATUS -eq 0 ]
+then
+       mail -s "Build@$HOSTNAME SUCCESS - $DATE - $BUILD_DIR" $TO < pom.xml
+else
+       mail -s "Build@$HOSTNAME FAILURE - $DATE - $BUILD_DIR" $TO < deploy.log
+fi
+
+# SDK
+#cd dist/org.argeo.slc.sdk
+#/usr/local/bin/mvn deploy
+#cd ../..
+
+# SITE
+/usr/local/bin/mvn -up --fail-at-end site-deploy $PROFILES 2>&1 | tee siteGeneration.log
+if [ $PIPESTATUS -eq 0 ]
+then
+       echo No need to send email for successful site generation
+else
+       mail -s "SiteGeneration@$HOSTNAME FAILURE - $DATE - $BUILD_DIR" $TO < siteGeneration.log
+fi
+
+
+exit $EXIT_STATUS
diff --git a/modules/agent/pom.xml b/modules/agent/pom.xml
deleted file mode 100644 (file)
index 52f633a..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-       <modelVersion>4.0.0</modelVersion>
-       <parent>
-               <groupId>org.argeo.slc</groupId>
-               <artifactId>modules</artifactId>
-               <version>1.1.3-SNAPSHOT</version>
-               <relativePath>..</relativePath>
-       </parent>
-       <groupId>org.argeo.slc</groupId>
-       <artifactId>modules</artifactId>
-       <packaging>pom</packaging>
-       <name>SLC Modules Agent</name>
-       <modules>
-               <module>org.argeo.slc.agent</module>
-               <module>org.argeo.slc.agent.jcr</module>
-               <module>org.argeo.slc.agent.jms</module>
-               <module>org.argeo.slc.agent.ext.bsf</module>
-               <module>org.argeo.slc.agent.ext.jdbc</module>
-               <module>org.argeo.slc.agent.ext.xalan</module>
-               <module>org.argeo.slc.ext.activemq</module>
-       </modules>
-       <build>
-               <resources>
-                       <resource>
-                               <directory>.</directory>
-                               <includes>
-                                       <include>**</include>
-                               </includes>
-                               <excludes>
-                                       <exclude>.*</exclude>
-                                       <exclude>pom.xml</exclude>
-                                       <exclude>build.properties</exclude>
-                               </excludes>
-                       </resource>
-               </resources>
-               <plugins>
-                       <plugin>
-                               <artifactId>maven-clean-plugin</artifactId>
-                               <configuration>
-                                       <filesets>
-                                               <fileset>
-                                                       <directory>META-INF</directory>
-                                                       <includes>
-                                                               <include>MANIFEST.MF</include>
-                                                       </includes>
-                                               </fileset>
-                                       </filesets>
-                               </configuration>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-jar-plugin</artifactId>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.apache.felix</groupId>
-                               <artifactId>maven-bundle-plugin</artifactId>
-                       </plugin>
-               </plugins>
-       </build>
-</project>
\ No newline at end of file
diff --git a/modules/server/.settings/org.eclipse.jdt.core.prefs b/modules/server/.settings/org.eclipse.jdt.core.prefs
deleted file mode 100644 (file)
index 9bd0186..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-#Sat Jun 27 18:22:37 CEST 2009
-eclipse.preferences.version=1
-org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
-org.eclipse.jdt.core.compiler.compliance=1.5
-org.eclipse.jdt.core.compiler.source=1.5
diff --git a/modules/server/.settings/org.maven.ide.eclipse.prefs b/modules/server/.settings/org.maven.ide.eclipse.prefs
deleted file mode 100644 (file)
index c4d2294..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-#Sat Jun 27 18:22:31 CEST 2009
-activeProfiles=
-eclipse.preferences.version=1
-fullBuildGoals=process-test-resources
-includeModules=false
-resolveWorkspaceProjects=true
-resourceFilterGoals=process-resources resources\:testResources
-skipCompilerPlugin=true
-version=1
diff --git a/modules/server/pom.xml b/modules/server/pom.xml
deleted file mode 100644 (file)
index fdc177d..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-       <modelVersion>4.0.0</modelVersion>
-       <parent>
-               <groupId>org.argeo.slc</groupId>
-               <artifactId>modules</artifactId>
-               <version>1.1.3-SNAPSHOT</version>
-               <relativePath>..</relativePath>
-       </parent>
-       <groupId>org.argeo.slc</groupId>
-       <artifactId>modules</artifactId>
-       <packaging>pom</packaging>
-       <name>SLC Modules Server</name>
-       <modules>
-               <module>org.argeo.slc.node.jackrabbit</module>
-               <module>org.argeo.slc.server.repo</module>
-               <module>org.argeo.slc.server.repo.webapp</module>
-       </modules>
-       <build>
-               <resources>
-                       <resource>
-                               <directory>.</directory>
-                               <includes>
-                                       <include>**</include>
-                               </includes>
-                               <excludes>
-                                       <exclude>.*</exclude>
-                                       <exclude>pom.xml</exclude>
-                                       <exclude>build.properties</exclude>
-                               </excludes>
-                       </resource>
-               </resources>
-               <plugins>
-                       <plugin>
-                               <artifactId>maven-clean-plugin</artifactId>
-                               <configuration>
-                                       <filesets>
-                                               <fileset>
-                                                       <directory>META-INF</directory>
-                                                       <includes>
-                                                               <include>MANIFEST.MF</include>
-                                                       </includes>
-                                               </fileset>
-                                       </filesets>
-                               </configuration>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-jar-plugin</artifactId>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.apache.felix</groupId>
-                               <artifactId>maven-bundle-plugin</artifactId>
-                       </plugin>
-               </plugins>
-       </build>
-</project>
\ No newline at end of file