|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" |
3 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | +<project |
| 3 | + xmlns="http://maven.apache.org/POM/4.0.0" |
| 4 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | 5 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | | - <parent> |
6 | | - <artifactId>kafka-ui</artifactId> |
7 | | - <groupId>com.provectus</groupId> |
8 | | - <version>0.0.1-SNAPSHOT</version> |
9 | | - </parent> |
10 | | - |
11 | | - <modelVersion>4.0.0</modelVersion> |
12 | | - <artifactId>kafka-ui-serde-api</artifactId> |
13 | | - <build> |
14 | | - <plugins> |
15 | | - <plugin> |
16 | | - <groupId>org.apache.maven.plugins</groupId> |
17 | | - <artifactId>maven-install-plugin</artifactId> |
18 | | - <version>2.5.2</version> |
19 | | - </plugin> |
20 | | - <plugin> |
21 | | - <groupId>org.apache.maven.plugins</groupId> |
22 | | - <artifactId>maven-jar-plugin</artifactId> |
23 | | - <version>3.0.2</version> |
24 | | - </plugin> |
25 | | - </plugins> |
26 | | - |
27 | | - </build> |
| 6 | + <modelVersion>4.0.0</modelVersion> |
| 7 | + <packaging>jar</packaging> |
| 8 | + <properties> |
| 9 | + <maven.compiler.source>17</maven.compiler.source> |
| 10 | + <maven.compiler.target>17</maven.compiler.target> |
| 11 | + </properties> |
| 12 | + <distributionManagement> |
| 13 | + <snapshotRepository> |
| 14 | + <id>ossrh</id> |
| 15 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 16 | + </snapshotRepository> |
| 17 | + <repository> |
| 18 | + <id>ossrh</id> |
| 19 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 20 | + </repository> |
| 21 | + </distributionManagement> |
| 22 | + <name>kafka-ui-serde-api</name> |
| 23 | + <description>kafka-ui-serde-api</description> |
| 24 | + <url>http://github.com/provectus/kafka-ui</url> |
| 25 | + <licenses> |
| 26 | + <license> |
| 27 | + <name>The Apache License, Version 2.0</name> |
| 28 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 29 | + </license> |
| 30 | + </licenses> |
| 31 | + <developers> |
| 32 | + <developer> |
| 33 | + <name>Provectus</name> |
| 34 | + |
| 35 | + <organization>Provectus</organization> |
| 36 | + <organizationUrl>https://provectus.com</organizationUrl> |
| 37 | + </developer> |
| 38 | + </developers> |
| 39 | + <scm> |
| 40 | + <connection>scm:git:git://github.com/provectus/kafka-ui.git</connection> |
| 41 | + <developerConnection>scm:git:ssh://github.com:provectus/kafka-ui.git</developerConnection> |
| 42 | + <url>https://github.com/provectus/kafka-ui</url> |
| 43 | + </scm> |
| 44 | + <groupId>com.provectus</groupId> |
| 45 | + <artifactId>kafka-ui-serde-api</artifactId> |
| 46 | + <version>1.0.0</version> |
| 47 | + <build> |
| 48 | + <pluginManagement> |
| 49 | + <plugins> |
| 50 | + <plugin> |
| 51 | + <groupId>org.apache.maven.plugins</groupId> |
| 52 | + <artifactId>maven-install-plugin</artifactId> |
| 53 | + <version>2.5.2</version> |
| 54 | + </plugin> |
| 55 | + <plugin> |
| 56 | + <groupId>org.apache.maven.plugins</groupId> |
| 57 | + <artifactId>maven-jar-plugin</artifactId> |
| 58 | + <version>3.0.2</version> |
| 59 | + </plugin> |
| 60 | + <plugin> |
| 61 | + <groupId>org.sonatype.plugins</groupId> |
| 62 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 63 | + <version>1.6.13</version> |
| 64 | + <extensions>true</extensions> |
| 65 | + <configuration> |
| 66 | + <serverId>ossrh</serverId> |
| 67 | + <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
| 68 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 69 | + </configuration> |
| 70 | + </plugin> |
| 71 | + <plugin> |
| 72 | + <groupId>org.apache.maven.plugins</groupId> |
| 73 | + <artifactId>maven-source-plugin</artifactId> |
| 74 | + <version>2.2.1</version> |
| 75 | + <executions> |
| 76 | + <execution> |
| 77 | + <id>attach-sources</id> |
| 78 | + <goals> |
| 79 | + <goal>jar-no-fork</goal> |
| 80 | + </goals> |
| 81 | + </execution> |
| 82 | + </executions> |
| 83 | + </plugin> |
| 84 | + <plugin> |
| 85 | + <groupId>org.apache.maven.plugins</groupId> |
| 86 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 87 | + <configuration> |
| 88 | + <source>8</source> |
| 89 | + </configuration> |
| 90 | + <version>3.4.1</version> |
| 91 | + <executions> |
| 92 | + <execution> |
| 93 | + <id>attach-javadocs</id> |
| 94 | + <goals> |
| 95 | + <goal>jar</goal> |
| 96 | + </goals> |
| 97 | + </execution> |
| 98 | + </executions> |
| 99 | + </plugin> |
| 100 | + <plugin> |
| 101 | + <groupId>org.apache.maven.plugins</groupId> |
| 102 | + <artifactId>maven-gpg-plugin</artifactId> |
| 103 | + <executions> |
| 104 | + <execution> |
| 105 | + <id>sign-artifacts</id> |
| 106 | + <phase>verify</phase> |
| 107 | + <goals> |
| 108 | + <goal>sign</goal> |
| 109 | + </goals> |
| 110 | + </execution> |
| 111 | + </executions> |
| 112 | + <configuration> |
| 113 | + <!-- Prevent gpg from using pinentry programs --> |
| 114 | + <gpgArguments> |
| 115 | + <arg>--pinentry-mode</arg> |
| 116 | + <arg>loopback</arg> |
| 117 | + </gpgArguments> |
| 118 | + </configuration> |
| 119 | + </plugin> |
| 120 | + </plugins> |
| 121 | + </pluginManagement> |
| 122 | + </build> |
28 | 123 | </project> |
0 commit comments