| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- <!--
- Licensed to the Apache Software Foundation (ASF) under one or more
- contributor license agreements. See the NOTICE file distributed with
- this work for additional information regarding copyright ownership.
- The ASF licenses this file to You under the Apache License, Version 2.0
- (the "License"); you may not use this file except in compliance with
- the License. You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
- <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>io.github.aliyunmq</groupId>
- <artifactId>rocketmq-logging</artifactId>
- <version>1.0.1</version>
- <packaging>pom</packaging>
- <name>rocketmq-logging</name>
- <description>RocketMQ Logging</description>
- <licenses>
- <license>
- <name>Apache License, Version 2.0</name>
- <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
- <distribution>repo</distribution>
- <comments>A business-friendly OSS license</comments>
- </license>
- </licenses>
- <url>https://github.com/aliyunmq/rocketmq-logging/</url>
- <modules>
- <module>rocketmq-slf4j-api</module>
- <module>rocketmq-logback-classic</module>
- <module>rocketmq-logback-extensions</module>
- </modules>
- <properties>
- <!-- Make it compatible with Java8 -->
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <slf4j-api.version>2.0.3</slf4j-api.version>
- <!-- logback 1.4.x is not compatible with Java8 -->
- <logback-classic.version>1.3.5</logback-classic.version>
- <maven-source-plugin.version>3.2.1</maven-source-plugin.version>
- <maven-shade-plugin.version>3.2.4</maven-shade-plugin.version>
- <maven-javadoc-plugin.version>3.3.0</maven-javadoc-plugin.version>
- <maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
- <maven-pgg-plugin.version>1.6</maven-pgg-plugin.version>
- <!-- shade prefix for slf4j and logback -->
- <shade-prefix>org.apache.rocketmq.logging</shade-prefix>
- </properties>
- <developers>
- <developer>
- <name>Aaron Ai</name>
- <email>yangkun.ayk@gmail.com</email>
- </developer>
- </developers>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>io.github.aliyunmq</groupId>
- <artifactId>rocketmq-logback-classic</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>io.github.aliyunmq</groupId>
- <artifactId>rocketmq-logback-extensions</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>io.github.aliyunmq</groupId>
- <artifactId>rocketmq-slf4j-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>${slf4j-api.version}</version>
- </dependency>
- <dependency>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-classic</artifactId>
- <version>${logback-classic.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <distributionManagement>
- <snapshotRepository>
- <id>sonatype-nexus-snapshots-aliyunmq</id>
- <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
- </snapshotRepository>
- <repository>
- <id>sonatype-nexus-staging-aliyunmq</id>
- <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
- </repository>
- </distributionManagement>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>${maven-compiler-plugin.version}</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <version>${maven-source-plugin.version}</version>
- <configuration>
- <attach>true</attach>
- </configuration>
- <executions>
- <execution>
- <phase>compile</phase>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>${maven-javadoc-plugin.version}</version>
- <configuration>
- <charset>UTF-8</charset>
- <locale>en_US</locale>
- </configuration>
- <executions>
- <execution>
- <id>attach-javadocs</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- <profiles>
- <profile>
- <id>release</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-gpg-plugin</artifactId>
- <version>${maven-pgg-plugin.version}</version>
- <executions>
- <execution>
- <id>sign-artifacts</id>
- <phase>verify</phase>
- <goals>
- <goal>sign</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
- <scm>
- <url>git@github.com:aliyunmq/rocketmq-logging.git</url>
- <connection>scm:git:git@github.com:aliyunmq/rocketmq-logging.git</connection>
- <developerConnection>scm:git:git@github.com:aliyunmq/rocketmq-logging.git</developerConnection>
- </scm>
- </project>
|