diff options
author | Brad Miller (WPI) <brad@wpi.edu> | 2015-06-03 05:50:53 -0700 |
---|---|---|
committer | Gerrit Code Review <gerrit@sf36-usfst.sjc.collab.net> | 2015-06-03 05:50:53 -0700 |
commit | d9e0c5c538206553d958e83123fc1384507ec8ed (patch) | |
tree | f80378b76fb978d93a8ee13623ceca393f681da7 /smartdashboard/pom.xml | |
parent | 80c228c543620fc4d1b376355a9b7bc19c9d0153 (diff) | |
parent | b8554780c3c3d5028931809d48a4309e8f91c413 (diff) |
Merge "Added gradle build support and removed extraneous other build files."
Diffstat (limited to 'smartdashboard/pom.xml')
-rw-r--r-- | smartdashboard/pom.xml | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/smartdashboard/pom.xml b/smartdashboard/pom.xml deleted file mode 100644 index c085ccd..0000000 --- a/smartdashboard/pom.xml +++ /dev/null @@ -1,74 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - <modelVersion>4.0.0</modelVersion> - <groupId>edu.wpi.first.wpilib</groupId> - <artifactId>SmartDashboard</artifactId> - <version>1.0.0-SNAPSHOT</version> - <packaging>pom</packaging> - - <properties> - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - <project.resources.sourceEncoding>UTF-8</project.resources.sourceEncoding> - </properties> - - <repositories> - <repository> - <id>WPILib Maven Repository</id> - <url>http://first.wpi.edu/FRC/roborio/maven/</url> - </repository> - </repositories> - - <distributionManagement> - <repository> - <id>filesystem.repo</id> - <name>Temporary Staging Repository</name> - <url>file://${user.home}/releases/maven</url> - </repository> - </distributionManagement> - - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-dependency-plugin</artifactId> - <version>2.9</version> - <configuration> - <artifactItems> - <artifactItem> - <groupId>edu.wpi.first.wpilib.networktables.java</groupId> - <artifactId>NetworkTables</artifactId> - <version>0.1.0-SNAPSHOT</version> - <type>jar</type> - <overWrite>true</overWrite> - <outputDirectory>lib</outputDirectory> - <!-- <destFileName>[ filename ]</destFileName> --> - </artifactItem> - </artifactItems> - </configuration> - </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>build-helper-maven-plugin</artifactId> - <version>1.9.1</version> - <executions> - <execution> - <id>attach-artifacts</id> - <phase>package</phase> - <goals> - <goal>attach-artifact</goal> - </goals> - <configuration> - <artifacts> - <artifact> - <file>dist/tools/SmartDashboard.jar</file> - <type>jar</type> - </artifact> - </artifacts> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> -</project> |