Skip to content

Instantly share code, notes, and snippets.

@ucguy4u
Created September 12, 2020 07:54
Show Gist options
  • Select an option

  • Save ucguy4u/4a67e64ddd4f58e6cab4e7a9ced24db9 to your computer and use it in GitHub Desktop.

Select an option

Save ucguy4u/4a67e64ddd4f58e6cab4e7a9ced24db9 to your computer and use it in GitHub Desktop.
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.ucguy4u</groupId>
<artifactId>datastructures</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>datastructures</name>
<url>http://maven.apache.org</url>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<additionalOptions>
<additionalOption>-Xdoclint:none</additionalOption>
</additionalOptions>
<reportOutputDirectory>./docs</reportOutputDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<inherited>true</inherited>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
@ucguy4u
Copy link
Copy Markdown
Author

ucguy4u commented Sep 12, 2020

sample pom.xml

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment