Add pom.xml for phase 4

This commit is contained in:
Xawirses
2015-04-07 14:36:07 +02:00
parent 0d5144b811
commit 8aeaf6de5d
2 changed files with 32 additions and 6 deletions

View File

@@ -1,6 +1,5 @@
#!/bin/bash #!/bin/bash
if [ -z $1 ] ; then if [ -z $1 ] ; then
echo "NOTICE : phase0.sh NbYear OutFiles" echo "NOTICE : phase0.sh NbYear OutFiles"
exit 1; exit 1;
@@ -9,11 +8,10 @@ else
echo "NOTICE : phase0.sh NbYear OutFiles" echo "NOTICE : phase0.sh NbYear OutFiles"
exit 1; exit 1;
fi fi
fi if [ $(echo $1 | grep -v [a-Z] | wc -l) -eq 0 ]; then
echo "Erreur : arg \$1 non entier positif !"
if [ $(echo $1 | grep -v [a-Z] | wc -l) -eq 0 ]; then exit 1
echo "Erreur : arg \$1 non entier positif !" fi
exit 1
fi fi
TIME="$1 year ago" TIME="$1 year ago"

28
pom.xml Normal file
View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>fr.atewix</groupId>
<artifactId>GitMining</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>GitMining</name>
<url>https://github.com/Xawirses/GitMining</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>