Skip to content

Commit

Permalink
init extension multimodule project
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Pernollet committed Jun 6, 2013
0 parents commit 7f51bb8
Show file tree
Hide file tree
Showing 12 changed files with 210 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
dist
build
doc/javadoc
target
.settings

*.class
*.log
*~/
*~
15 changes: 15 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[submodule "jzy3d-depthpeeling"]
path = jzy3d-depthpeeling
url = https://github.com/jzy3d/jzy3d-depthpeeling
[submodule "jzy3d-g2d"]
path = jzy3d-g2d
url = https://github.com/jzy3d/jzy3d-g2d
[submodule "jzy3d-graphs"]
path = jzy3d-graphs
url = https://github.com/jzy3d/jzy3d-graphs
[submodule "jzy3d-svm-mapper"]
path = jzy3d-svm-mapper
url = https://github.com/jzy3d/jzy3d-svm-mapper
[submodule "jzy3d-tools-libsvm"]
path = jzy3d-tools-libsvm
url = https://github.com/jzy3d/jzy3d-tools-libsvm
38 changes: 38 additions & 0 deletions git_commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
if [$1 == ""]
then
echo "missing commit message!"
exit 0;
fi

cd jzy3d-tools-libsvm/
git add .
git add -u
git commit -m "$1"
cd ..

cd jzy3d-svm-mapper/
git add .
git add -u
git commit -m "$1"
cd ..

cd jzy3d-g2d/
git add .
git add -u
git commit -m "$1"
cd ..

cd jzy3d-graphs/
git add .
git add -u
git commit -m "$1"
cd ..

cd jzy3d-depthpeeling/
git add .
git add -u
git commit -m "$1"
cd ..



21 changes: 21 additions & 0 deletions git_pull
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
cd jzy3d-tools-libsvm/
git pull --rebase
cd ..

cd jzy3d-svm-mapper/
git pull --rebase
cd ..

cd jzy3d-g2d/
git pull --rebase
cd ..

cd jzy3d-graphs/
git pull --rebase
cd ..

cd jzy3d-depthpeeling/
git pull --rebase
cd ..


21 changes: 21 additions & 0 deletions git_push
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
cd jzy3d-tools-libsvm/
git push
cd ..

cd jzy3d-svm-mapper/
git push
cd ..

cd jzy3d-g2d/
git push
cd ..

cd jzy3d-graphs/
git push
cd ..

cd jzy3d-depthpeeling/
git push
cd ..


1 change: 1 addition & 0 deletions jzy3d-depthpeeling
Submodule jzy3d-depthpeeling added at c16711
1 change: 1 addition & 0 deletions jzy3d-g2d
Submodule jzy3d-g2d added at 7c3788
1 change: 1 addition & 0 deletions jzy3d-graphs
Submodule jzy3d-graphs added at b58136
1 change: 1 addition & 0 deletions jzy3d-svm-mapper
Submodule jzy3d-svm-mapper added at 402fda
1 change: 1 addition & 0 deletions jzy3d-tools-libsvm
Submodule jzy3d-tools-libsvm added at dd7430
57 changes: 57 additions & 0 deletions pom-ftp-deploy.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<project>
<modelVersion>4.0.0</modelVersion>


<groupId>org.jzy3d</groupId>
<artifactId>jzy3d-extensions</artifactId>
<version>0.9.1-SNAPSHOT</version>
<packaging>pom</packaging>

<name>Jzy3d FTP deployement project</name>

<modules>
<!--
<module>jzy3d-svm-mapper</module>
<module>jzy3d-tools-libsvm</module>
<module>jzy3d-g2d</module>
<module>jzy3d-depthpeeling</module>
pb with gephi toolkit<module>jzy3d-graphs</module>-->
</modules>

<distributionManagement>
<repository>
<id>jzy3d-ftp-maven</id>
<name>Jzy3d Maven Folder</name>
<url>ftp://www.jzy3d.org/v1/maven/releases</url>
</repository>
<snapshotRepository>
<id>jzy3d-ftp-maven</id>
<name>Jzy3d Maven Folder SNAPSHOTS</name>
<url>ftp://www.jzy3d.org/v1/maven/snapshots</url>
</snapshotRepository>
</distributionManagement>


<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ftp</artifactId>
<version>1.0-beta-6</version>
</extension>
</extensions>

<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
43 changes: 43 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<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>

<groupId>org.jzy3d</groupId>
<artifactId>jzy3d-extensions</artifactId>
<version>0.9.1-SNAPSHOT</version>
<packaging>pom</packaging>

<name>Jzy3d Extensions Project</name>

<parent>
<groupId>org.jzy3d</groupId>
<artifactId>jzy3d-master</artifactId>
<version>0.9.1-SNAPSHOT</version>
</parent>


<modules>
<module>jzy3d-svm-mapper</module>
<module>jzy3d-tools-libsvm</module>
<module>jzy3d-g2d</module>
<module>jzy3d-depthpeeling</module>
<!-- pb with gephi toolkit<module>jzy3d-graphs</module>-->
</modules>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>

0 comments on commit 7f51bb8

Please sign in to comment.