Skip to content
This repository was archived by the owner on Jun 20, 2025. It is now read-only.

Set superpom 0.0.11 #84

Merged
merged 1 commit into from
Aug 31, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions benchmarks-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,6 @@
</dependency>

<!-- Test scope -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
Expand Down
10 changes: 0 additions & 10 deletions eclipse.importorder

This file was deleted.

144 changes: 1 addition & 143 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,31 +7,15 @@
<parent>
<groupId>io.scalecube</groupId>
<artifactId>scalecube-parent-pom</artifactId>
<version>0.0.10</version>
<version>0.0.11</version>
</parent>

<groupId>io.scalecube</groupId>
<artifactId>scalecube-benchmarks-parent</artifactId>
<version>1.1.15-SNAPSHOT</version>
<packaging>pom</packaging>

<name>ScaleCube/scalecube-benchmarks</name>

<description>benchmarks</description>
<inceptionYear>2015</inceptionYear>
<url>http://scalecube.io</url>

<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>

<prerequisites>
<maven>3.0.3</maven>
</prerequisites>

<scm>
<url>https://github.com/scalecube/scalecube</url>
<connection>scm:git:git@github.com:scalecube/scalecube-benchmarks.git</connection>
Expand All @@ -40,38 +24,13 @@
<tag>HEAD</tag>
</scm>

<developers>
<developer>
<id>scalecube.io</id>
<name>The ScaleCube Project Contributors</name>
<email>info@scalecube.io</email>
<organization>The ScaleCube Project</organization>
<organizationUrl>http://scalecube.io/</organizationUrl>
</developer>
</developers>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<modules>
<module>benchmarks-api</module>
<module>benchmarks-examples</module>
<module>benchmarks-log4j2</module>
</modules>

<properties>
<argLine>-Xms1024m -Xmx2048m</argLine>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<uberjar.name>scalecube-benchmarks</uberjar.name>
<reactor-core.version>3.1.8.RELEASE</reactor-core.version>
<jmh.version>1.21</jmh.version>
Expand All @@ -80,15 +39,7 @@
<slf4j.version>1.7.7</slf4j.version>
<log4j.version>2.11.1</log4j.version>
<disruptor.version>3.4.2</disruptor.version>

<junit.jupiter.version>5.2.0</junit.jupiter.version>
<hamcrest-all.version>1.3</hamcrest-all.version>

<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
<maven-source-plugin.version>3.0.1</maven-source-plugin.version>
<maven-javadoc-plugin.version>2.10.4</maven-javadoc-plugin.version>
<maven-shade-plugin.version>3.1.0</maven-shade-plugin.version>
<maven-enforcer-plugin.version>3.0.0-M2</maven-enforcer-plugin.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -144,100 +95,7 @@
<scope>provided</scope>
<optional>true</optional>
</dependency>

<!-- Test scope -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
</plugin>
</plugins>

</build>

<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven-gpg-plugin.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source-plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>post-integration-test</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>post-integration-test</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>
3 changes: 2 additions & 1 deletion travis-settings.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<settings
xsi:schemaLocation='http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd'
xmlns='http://maven.apache.org/SETTINGS/1.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
xmlns='http://maven.apache.org/SETTINGS/1.0.0'
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
<profiles>
<profile>
<id>skipstyle</id>
Expand Down