Skip to content

Commit

Permalink
Do 2.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinkredmond committed Sep 9, 2020
1 parent f2478a3 commit b1e5ee5
Showing 1 changed file with 29 additions and 4 deletions.
33 changes: 29 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,13 @@
<modelVersion>4.0.0</modelVersion>

<groupId>com.dustinredmond</groupId>
<artifactId>SharePointInfo</artifactId>
<version>1.0-SNAPSHOT</version>
<artifactId>SharePointAPI</artifactId>
<version>2.0.0-RELEASE</version>
<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>org.apache.httpcomponents</groupId>
Expand All @@ -27,12 +32,32 @@
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<appendAssemblyId>false</appendAssemblyId>
<finalName>SharePointAPI</finalName>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
<source>9</source>
<target>9</target>
</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit b1e5ee5

Please sign in to comment.