Skip to content

Commit

Permalink
Merge pull request AbsaOSS#2 from hotels-hde/adding_sensor_for_headers
Browse files Browse the repository at this point in the history
removing unused imports
  • Loading branch information
Randal Boyle authored and GitHub Enterprise committed Sep 6, 2019
2 parents a771551 + eb41a70 commit 960eb90
Showing 1 changed file with 75 additions and 70 deletions.
145 changes: 75 additions & 70 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,17 @@

<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>
<groupId>za.co.absa</groupId>
<parent>
<groupId>com.hotels</groupId>
<artifactId>hcom-data-parent</artifactId>
<version>2.0.2</version>
</parent>
<groupId>com.hotels.hde</groupId>
<artifactId>abris_2.11</artifactId>
<version>2.2.2</version>
<version>2.2.3-HCOM-1</version>
<name>abris</name>
<description>Provides seamless integration between Avro and Spark Structured APIs.</description>
<url>https://github.com/AbsaOSS/ABRiS</url>
<!-- <url>https://github.com/AbsaOSS/ABRiS</url>-->

<distributionManagement>
<snapshotRepository>
Expand Down Expand Up @@ -64,12 +69,12 @@
<gpg.plugin.version>1.6</gpg.plugin.version>
</properties>

<scm>
<connection>scm:git:git://github.com/AbsaOSS/ABRiS.git</connection>
<developerConnection>scm:git:ssh://github.com:AbsaOSS/ABRiS.git</developerConnection>
<url>https://github.com/AbsaOSS/ABRiS/tree/master</url>
<tag>abris_2.11-2.2.0</tag>
</scm>
<!-- <scm>-->
<!-- <connection>scm:git:git://github.com/AbsaOSS/ABRiS.git</connection>-->
<!-- <developerConnection>scm:git:ssh://github.com:AbsaOSS/ABRiS.git</developerConnection>-->
<!-- <url>https://github.com/AbsaOSS/ABRiS/tree/master</url>-->
<!-- <tag>abris_2.11-2.2.0</tag>-->
<!-- </scm>-->

<licenses>
<license>
Expand Down Expand Up @@ -291,19 +296,19 @@
</resources>

<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.1</version>
<executions>
<execution>
<id>default-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- <plugin>-->
<!-- <artifactId>maven-deploy-plugin</artifactId>-->
<!-- <version>2.8.1</version>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <id>default-deploy</id>-->
<!-- <phase>deploy</phase>-->
<!-- <goals>-->
<!-- <goal>deploy</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->

<!-- the Maven Scala plugin will compile Scala source files -->
<plugin>
Expand Down Expand Up @@ -383,53 +388,53 @@
</pluginManagement>
</build>

<profiles>
<profile>
<id>public</id>
<build>
<plugins>
<!-- generates sources.jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${gpg.plugin.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<!-- <profiles>-->
<!-- <profile>-->
<!-- <id>public</id>-->
<!-- <build>-->
<!-- <plugins>-->
<!-- &lt;!&ndash; generates sources.jar &ndash;&gt;-->
<!-- <plugin>-->
<!-- <groupId>org.apache.maven.plugins</groupId>-->
<!-- <artifactId>maven-source-plugin</artifactId>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <id>attach-sources</id>-->
<!-- <goals>-->
<!-- <goal>jar</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->

<!-- <plugin>-->
<!-- <groupId>org.apache.maven.plugins</groupId>-->
<!-- <artifactId>maven-gpg-plugin</artifactId>-->
<!-- <version>${gpg.plugin.version}</version>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <id>sign-artifacts</id>-->
<!-- <phase>verify</phase>-->
<!-- <goals>-->
<!-- <goal>sign</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->

<!-- <plugin>-->
<!-- <groupId>org.sonatype.plugins</groupId>-->
<!-- <artifactId>nexus-staging-maven-plugin</artifactId>-->
<!-- <extensions>true</extensions>-->
<!-- <configuration>-->
<!-- <serverId>ossrh</serverId>-->
<!-- <nexusUrl>https://oss.sonatype.org/</nexusUrl>-->
<!-- <autoReleaseAfterClose>false</autoReleaseAfterClose>-->
<!-- </configuration>-->
<!-- </plugin>-->
<!-- </plugins>-->
<!-- </build>-->
<!-- </profile>-->
<!-- </profiles>-->

</project>

0 comments on commit 960eb90

Please sign in to comment.