Skip to content
4 changes: 2 additions & 2 deletions Fibonacci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ else
read Num
fi

f1=0
f1=100
f2=1

echo "The Fibonacci sequences for the number $Num is : "
Expand All @@ -32,4 +32,4 @@ do
f2=$fn
done

echo
echo "Invoked and Executed by Mithilesh Singh"
16 changes: 16 additions & 0 deletions MavenProject/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
<mvn.version>3.6.0</mvn.version>
</properties>

<dependencies>
Expand All @@ -34,6 +38,17 @@
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
Expand All @@ -50,6 +65,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>

<configuration>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# jenkins-demo
#This tests the changes in the file
#This tests the changes in the file done.
1 change: 1 addition & 0 deletions javancss-master/pom.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- Testing -->
<?xml version="1.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/xsd/maven-4.0.0.xsd">

Expand Down
1 change: 1 addition & 0 deletions testing123.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@