Skip to content

Commit 75e741e

Browse files
Remove deployment methods since they do not work at all.
1 parent ff79a3b commit 75e741e

File tree

2 files changed

+19
-79
lines changed

2 files changed

+19
-79
lines changed

pom.xml

Lines changed: 19 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
<groupId>com.iopipe</groupId>
55
<artifactId>iopipe-logger-log4j2</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.0.3</version>
7+
<version>${revision}</version>
88
<properties>
9-
<revision>1.0.3</revision>
9+
<revision>1.1.0</revision>
1010
</properties>
1111
<name>IOpipe Java Log4j2 Logger Adapter</name>
1212
<url>https://www.iopipe.com/</url>
1313
<scm>
1414
<connection>scm:git:https://github.com/iopipe/iopipe-java-logger-log4j2</connection>
1515
<url>https://github.com/iopipe/iopipe-java-logger-log4j2</url>
16-
<tag>1.0.3</tag>
16+
<tag>${revision}</tag>
1717
</scm>
1818
<developers>
1919
<developer>
@@ -39,6 +39,7 @@
3939
This project contains the adapter for Log4j2 so that logging events
4040
are captured and uploaded to IOpipe.
4141
</description>
42+
4243
<dependencies>
4344
<dependency>
4445
<groupId>org.apache.logging.log4j</groupId>
@@ -81,73 +82,10 @@
8182
<scope>test</scope>
8283
</dependency>
8384
</dependencies>
84-
<repositories>
85-
<repository>
86-
<snapshots>
87-
<enabled>false</enabled>
88-
</snapshots>
89-
<id>bintray-iopipe-maven</id>
90-
<name>bintray</name>
91-
<url>https://dl.bintray.com/iopipe/iopipe</url>
92-
</repository>
93-
</repositories>
94-
<distributionManagement>
95-
<repository>
96-
<id>distro-bintray</id>
97-
<name>distro-bintray</name>
98-
<url>https://api.bintray.com/maven/iopipe/iopipe-logger-log4j2/iopipe-logger-log4j2/;publish=1</url>
99-
</repository>
100-
</distributionManagement>
101-
102-
<!-- Deploy to bintray. -->
103-
<profiles>
104-
<profile>
105-
<id>distro-bintray</id>
106-
<build>
107-
<plugins>
108-
109-
<!-- Disable default deployer. -->
110-
<plugin>
111-
<groupId>org.apache.maven.plugins</groupId>
112-
<artifactId>maven-deploy-plugin</artifactId>
113-
<configuration>
114-
<skip>true</skip>
115-
</configuration>
116-
</plugin>
117-
118-
<!-- Enable alternative deployer. -->
119-
<plugin>
120-
<groupId>com.carrotgarden.maven</groupId>
121-
<artifactId>bintray-maven-plugin</artifactId>
122-
<configuration>
123-
<skip>false</skip>
124-
125-
<!-- Bintray oranization name. -->
126-
<subject>iopipe</subject>
127-
128-
<!-- Bintray target repository. -->
129-
<repository>iopipe-logger-log4j2</repository>
130-
131-
<!-- Bintray credentials in settings.xml. -->
132-
<serverId>distro-bintary</serverId>
133-
134-
</configuration>
135-
<executions>
136-
<!-- Activate "bintary:deploy" during "deploy" -->
137-
<execution>
138-
<goals>
139-
<goal>deploy</goal>
140-
</goals>
141-
</execution>
142-
</executions>
143-
</plugin>
144-
</plugins>
145-
</build>
146-
</profile>
147-
</profiles>
14885

14986
<build>
15087
<plugins>
88+
<!-- Used to make it so the JavaDoc and sources are included. -->
15189
<plugin>
15290
<groupId>org.apache.maven.plugins</groupId>
15391
<artifactId>maven-javadoc-plugin</artifactId>
@@ -160,6 +98,20 @@
16098
</execution>
16199
</executions>
162100
</plugin>
101+
<plugin>
102+
<groupId>org.apache.maven.plugins</groupId>
103+
<artifactId>maven-source-plugin</artifactId>
104+
<executions>
105+
<execution>
106+
<id>attach-sources</id>
107+
<goals>
108+
<goal>jar</goal>
109+
</goals>
110+
</execution>
111+
</executions>
112+
</plugin>
113+
<!-- End of sources/javadoc inclusion. -->
114+
163115
<plugin>
164116
<groupId>org.apache.maven.plugins</groupId>
165117
<artifactId>maven-compiler-plugin</artifactId>

settings.xml

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)