summaryrefslogtreecommitdiffstats
path: root/buildhelpers/pom.xml
diff options
context:
space:
mode:
authorTeemu Suo-Anttila <tsuoanttila@users.noreply.github.com>2018-03-22 16:36:14 +0200
committerIlia Motornyi <elmot@vaadin.com>2018-03-22 16:36:14 +0200
commitc78069eb3ece1b450c8fe911bf3c3a4dafef02c3 (patch)
tree17db6ae8f64200dd07d12167199c570006806610 /buildhelpers/pom.xml
parent6fb2d1a98076c6fbb9ba014fab37d7bf7a6e6a62 (diff)
downloadvaadin-framework-c78069eb3ece1b450c8fe911bf3c3a4dafef02c3.tar.gz
vaadin-framework-c78069eb3ece1b450c8fe911bf3c3a4dafef02c3.zip
Remove unnecessary buildhelpers module (#10742)
Diffstat (limited to 'buildhelpers/pom.xml')
-rw-r--r--buildhelpers/pom.xml100
1 files changed, 0 insertions, 100 deletions
diff --git a/buildhelpers/pom.xml b/buildhelpers/pom.xml
deleted file mode 100644
index c28dd68097..0000000000
--- a/buildhelpers/pom.xml
+++ /dev/null
@@ -1,100 +0,0 @@
-<?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>
- <parent>
- <groupId>com.vaadin</groupId>
- <artifactId>vaadin-root</artifactId>
- <version>8.4-SNAPSHOT</version>
- </parent>
- <!-- Needed by a plugin in release build -->
- <groupId>com.vaadin</groupId>
- <artifactId>vaadin-buildhelpers</artifactId>
- <name>vaadin-buildhelpers</name>
- <packaging>jar</packaging>
-
- <url>https://vaadin.com/</url>
- <description>Vaadin build helpers</description>
-
- <dependencies>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- </dependency>
- <dependency>
- <groupId>commons-cli</groupId>
- <artifactId>commons-cli</artifactId>
- </dependency>
- <dependency>
- <groupId>com.vaadin</groupId>
- <artifactId>vaadin-sass-compiler</artifactId>
- </dependency>
-
- <dependency>
- <groupId>com.carrotsearch</groupId>
- <artifactId>smartsprites</artifactId>
- </dependency>
- </dependencies>
-
- <build>
- <resources>
- <!-- Include eclipse formatting settings in the jar to make them available
- as a dependency for all submodules -->
- <resource>
- <directory>${project.basedir}/../eclipse</directory>
- <targetPath>eclipse</targetPath>
- </resource>
- </resources>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-checkstyle-plugin</artifactId>
- <executions>
- <execution>
- <goals>
- <goal>checkstyle</goal>
- </goals>
- <phase>process-sources</phase>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <index>false</index>
- <manifest>
- <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
- </manifest>
- </archive>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-deploy-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
- </plugins>
-
- <!-- Skip sources jar -->
- <pluginManagement>
- <plugins>
- <plugin>
- <artifactId>maven-source-plugin</artifactId>
- <configuration>
- <skipSource>true</skipSource>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.sonatype.plugins</groupId>
- <artifactId>nexus-staging-maven-plugin</artifactId>
- <configuration>
- <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
-</project>