|
| 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" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + |
| 7 | + <groupId>org.springframework.grpc</groupId> |
| 8 | + <artifactId>spring-grpc-build-dependencies</artifactId> |
| 9 | + <version>0.4.0-SNAPSHOT</version> |
| 10 | + <packaging>pom</packaging> |
| 11 | + |
| 12 | + <name>Spring gRPC build dependencies</name> |
| 13 | + <description>Dependencies for the Spring gRPC modules</description> |
| 14 | + |
| 15 | + <url>https://github.com/spring-projects-experimental/spring-grpc</url> |
| 16 | + |
| 17 | + <scm> |
| 18 | + <url>https://github.com/spring-projects-experimental/spring-grpc</url> |
| 19 | + <connection>git://github.com/spring-projects-experimental/spring-grpc.git</connection> |
| 20 | + < developerConnection> [email protected]:spring-projects-experimental/spring-grpc.git</ developerConnection> |
| 21 | + </scm> |
| 22 | + |
| 23 | + <distributionManagement> |
| 24 | + <downloadUrl>https://github.com/spring-projects-experimental/spring-grpc</downloadUrl> |
| 25 | + <site> |
| 26 | + <id>spring-docs</id> |
| 27 | + <url>scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-grpc/docs/${project.artifactId}/${project.version}</url> |
| 28 | + </site> |
| 29 | + <repository> |
| 30 | + <id>sonatype-nexus-staging</id> |
| 31 | + <name>Nexus Release Repository</name> |
| 32 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 33 | + </repository> |
| 34 | + <snapshotRepository> |
| 35 | + <id>repo.spring.io</id> |
| 36 | + <url>https://repo.spring.io/libs-snapshot-local</url> |
| 37 | + <releases> |
| 38 | + <enabled>false</enabled> |
| 39 | + </releases> |
| 40 | + </snapshotRepository> |
| 41 | + </distributionManagement> |
| 42 | + |
| 43 | + <licenses> |
| 44 | + <license> |
| 45 | + <name>Apache 2.0</name> |
| 46 | + <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 47 | + <distribution>repo</distribution> |
| 48 | + </license> |
| 49 | + </licenses> |
| 50 | + |
| 51 | + <properties> |
| 52 | + <spring-framework.version>6.2.3</spring-framework.version> |
| 53 | + <spring-security.version>6.4.2</spring-security.version> |
| 54 | + <micrometer.version>1.13.6</micrometer.version> |
| 55 | + <netty.version>4.1.118.Final</netty.version> |
| 56 | + <spring-javaformat-maven-plugin.version>0.0.43</spring-javaformat-maven-plugin.version> |
| 57 | + </properties> |
| 58 | + |
| 59 | + <dependencyManagement> |
| 60 | + <dependencies> |
| 61 | + <dependency> |
| 62 | + <groupId>org.springframework.grpc</groupId> |
| 63 | + <artifactId>spring-grpc-dependencies</artifactId> |
| 64 | + <version>${project.version}</version> |
| 65 | + <type>pom</type> |
| 66 | + <scope>import</scope> |
| 67 | + </dependency> |
| 68 | + <dependency> |
| 69 | + <groupId>org.springframework</groupId> |
| 70 | + <artifactId>spring-framework-bom</artifactId> |
| 71 | + <version>${spring-framework.version}</version> |
| 72 | + <type>pom</type> |
| 73 | + <scope>import</scope> |
| 74 | + </dependency> |
| 75 | + <dependency> |
| 76 | + <groupId>org.springframework.security</groupId> |
| 77 | + <artifactId>spring-security-bom</artifactId> |
| 78 | + <version>${spring-security.version}</version> |
| 79 | + <type>pom</type> |
| 80 | + <scope>import</scope> |
| 81 | + </dependency> |
| 82 | + <dependency> |
| 83 | + <groupId>io.netty</groupId> |
| 84 | + <artifactId>netty-bom</artifactId> |
| 85 | + <version>${netty.version}</version> |
| 86 | + <type>pom</type> |
| 87 | + <scope>import</scope> |
| 88 | + </dependency> |
| 89 | + </dependencies> |
| 90 | + </dependencyManagement> |
| 91 | + |
| 92 | + <build> |
| 93 | + <plugins> |
| 94 | + <plugin> |
| 95 | + <groupId>io.spring.javaformat</groupId> |
| 96 | + <artifactId>spring-javaformat-maven-plugin</artifactId> |
| 97 | + <version>${spring-javaformat-maven-plugin.version}</version> |
| 98 | + <executions> |
| 99 | + <execution> |
| 100 | + <phase>validate</phase> |
| 101 | + <configuration> |
| 102 | + <skip>true</skip> |
| 103 | + </configuration> |
| 104 | + <goals> |
| 105 | + <goal>validate</goal> |
| 106 | + </goals> |
| 107 | + </execution> |
| 108 | + </executions> |
| 109 | + </plugin> |
| 110 | + </plugins> |
| 111 | + </build> |
| 112 | + |
| 113 | + <profiles> |
| 114 | + <profile> |
| 115 | + <id>staging</id> |
| 116 | + <distributionManagement> |
| 117 | + <repository> |
| 118 | + <id>repo.spring.io</id> |
| 119 | + <url>https://repo.spring.io/libs-staging-local</url> |
| 120 | + <snapshots> |
| 121 | + <enabled>false</enabled> |
| 122 | + </snapshots> |
| 123 | + </repository> |
| 124 | + </distributionManagement> |
| 125 | + </profile> |
| 126 | + <profile> |
| 127 | + <id>milestone</id> |
| 128 | + <distributionManagement> |
| 129 | + <repository> |
| 130 | + <id>repo.spring.io</id> |
| 131 | + <url>https://repo.spring.io/libs-milestone-local</url> |
| 132 | + <snapshots> |
| 133 | + <enabled>false</enabled> |
| 134 | + </snapshots> |
| 135 | + </repository> |
| 136 | + </distributionManagement> |
| 137 | + </profile> |
| 138 | + <profile> |
| 139 | + <id>central</id> |
| 140 | + <build> |
| 141 | + <plugins> |
| 142 | + <plugin> |
| 143 | + <groupId>org.apache.maven.plugins</groupId> |
| 144 | + <artifactId>maven-gpg-plugin</artifactId> |
| 145 | + <version>1.6</version> |
| 146 | + <executions> |
| 147 | + <execution> |
| 148 | + <id>sign-artifacts</id> |
| 149 | + <phase>verify</phase> |
| 150 | + <goals> |
| 151 | + <goal>sign</goal> |
| 152 | + </goals> |
| 153 | + </execution> |
| 154 | + </executions> |
| 155 | + <configuration> |
| 156 | + <gpgArguments> |
| 157 | + <arg>--batch</arg> |
| 158 | + <arg>--pinentry-mode=loopback</arg> |
| 159 | + </gpgArguments> |
| 160 | + </configuration> |
| 161 | + </plugin> |
| 162 | + </plugins> |
| 163 | + </build> |
| 164 | + </profile> |
| 165 | + </profiles> |
| 166 | + |
| 167 | + <developers> |
| 168 | + <developer> |
| 169 | + <id>dsyer</id> |
| 170 | + <name>Dave Syer</name> |
| 171 | + <email>david.syer at broadcom.com</email> |
| 172 | + <organization>Broadcom</organization> |
| 173 | + <organizationUrl>http://www.spring.io</organizationUrl> |
| 174 | + <roles> |
| 175 | + <role>lead</role> |
| 176 | + </roles> |
| 177 | + </developer> |
| 178 | + </developers> |
| 179 | + |
| 180 | +</project> |
0 commit comments