|
4 | 4 | <groupId>com.iopipe</groupId>
|
5 | 5 | <artifactId>iopipe-logger-log4j2</artifactId>
|
6 | 6 | <packaging>jar</packaging>
|
7 |
| - <version>1.0.3</version> |
| 7 | + <version>${revision}</version> |
8 | 8 | <properties>
|
9 |
| - <revision>1.0.3</revision> |
| 9 | + <revision>1.1.0</revision> |
10 | 10 | </properties>
|
11 | 11 | <name>IOpipe Java Log4j2 Logger Adapter</name>
|
12 | 12 | <url>https://www.iopipe.com/</url>
|
13 | 13 | <scm>
|
14 | 14 | <connection>scm:git:https://github.com/iopipe/iopipe-java-logger-log4j2</connection>
|
15 | 15 | <url>https://github.com/iopipe/iopipe-java-logger-log4j2</url>
|
16 |
| - <tag>1.0.3</tag> |
| 16 | + <tag>${revision}</tag> |
17 | 17 | </scm>
|
18 | 18 | <developers>
|
19 | 19 | <developer>
|
|
39 | 39 | This project contains the adapter for Log4j2 so that logging events
|
40 | 40 | are captured and uploaded to IOpipe.
|
41 | 41 | </description>
|
| 42 | + |
42 | 43 | <dependencies>
|
43 | 44 | <dependency>
|
44 | 45 | <groupId>org.apache.logging.log4j</groupId>
|
|
81 | 82 | <scope>test</scope>
|
82 | 83 | </dependency>
|
83 | 84 | </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> |
148 | 85 |
|
149 | 86 | <build>
|
150 | 87 | <plugins>
|
| 88 | + <!-- Used to make it so the JavaDoc and sources are included. --> |
151 | 89 | <plugin>
|
152 | 90 | <groupId>org.apache.maven.plugins</groupId>
|
153 | 91 | <artifactId>maven-javadoc-plugin</artifactId>
|
|
160 | 98 | </execution>
|
161 | 99 | </executions>
|
162 | 100 | </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 | + |
163 | 115 | <plugin>
|
164 | 116 | <groupId>org.apache.maven.plugins</groupId>
|
165 | 117 | <artifactId>maven-compiler-plugin</artifactId>
|
|
0 commit comments