Add pom.xml for phase 4
This commit is contained in:
@@ -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
|
||||||
|
|
||||||
if [ $(echo $1 | grep -v [a-Z] | wc -l) -eq 0 ]; then
|
|
||||||
echo "Erreur : arg \$1 non entier positif !"
|
echo "Erreur : arg \$1 non entier positif !"
|
||||||
exit 1
|
exit 1
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
TIME="$1 year ago"
|
TIME="$1 year ago"
|
||||||
|
|||||||
28
pom.xml
Normal file
28
pom.xml
Normal 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>
|
||||||
Reference in New Issue
Block a user