|
6 | 6 |
|
7 | 7 | <groupId>com.octopus.openfeature</groupId> |
8 | 8 | <artifactId>octopus-openfeature-provider</artifactId> |
9 | | - <version>0.2.0</version> |
| 9 | + <version>0.3.0-SNAPSHOT</version> |
10 | 10 | <packaging>jar</packaging> |
11 | 11 |
|
12 | 12 | <name>Octopus Deploy OpenFeature Provider</name> |
13 | 13 | <description>The Octopus Deploy provider for OpenFeature</description> |
14 | 14 | <url>https://octopus.com/docs/feature-toggles</url> |
15 | 15 |
|
| 16 | + <licenses> |
| 17 | + <license> |
| 18 | + <name>Apache License, Version 2.0</name> |
| 19 | + <url>https://www.apache.org/licenses/LICENSE-2.0.html</url> |
| 20 | + </license> |
| 21 | + </licenses> |
| 22 | + |
| 23 | + <developers> |
| 24 | + <developer> |
| 25 | + <name>Michael Richardson</name> |
| 26 | + |
| 27 | + <organization>Octopus Deploy</organization> |
| 28 | + <organizationUrl>https://octopus.com</organizationUrl> |
| 29 | + </developer> |
| 30 | + </developers> |
| 31 | + |
16 | 32 | <properties> |
17 | 33 | <maven.compiler.source>11</maven.compiler.source> |
18 | 34 | <maven.compiler.target>11</maven.compiler.target> |
19 | 35 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
20 | 36 | </properties> |
21 | | - |
| 37 | + |
| 38 | + <scm> |
| 39 | + <url>https://github.com/OctopusDeploy/openfeature-provider-java</url> |
| 40 | + </scm> |
| 41 | + |
| 42 | + <build> |
| 43 | + <plugins> |
| 44 | + <plugin> |
| 45 | + <groupId>org.sonatype.central</groupId> |
| 46 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 47 | + <version>0.8.0</version> |
| 48 | + <extensions>true</extensions> |
| 49 | + <configuration> |
| 50 | + <publishingServerId>central</publishingServerId> |
| 51 | + </configuration> |
| 52 | + </plugin> |
| 53 | + <plugin> |
| 54 | + <groupId>org.apache.maven.plugins</groupId> |
| 55 | + <artifactId>maven-source-plugin</artifactId> |
| 56 | + <version>3.3.1</version> |
| 57 | + <executions> |
| 58 | + <execution> |
| 59 | + <id>attach-sources</id> |
| 60 | + <phase>verify</phase> |
| 61 | + <goals> |
| 62 | + <goal>jar-no-fork</goal> |
| 63 | + </goals> |
| 64 | + </execution> |
| 65 | + </executions> |
| 66 | + </plugin> |
| 67 | + <plugin> |
| 68 | + <groupId>org.apache.maven.plugins</groupId> |
| 69 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 70 | + <version>3.11.2</version> |
| 71 | + <executions> |
| 72 | + <execution> |
| 73 | + <id>attach-javadocs</id> |
| 74 | + <goals> |
| 75 | + <goal>jar</goal> |
| 76 | + </goals> |
| 77 | + </execution> |
| 78 | + </executions> |
| 79 | + </plugin> |
| 80 | + <plugin> |
| 81 | + <groupId>org.apache.maven.plugins</groupId> |
| 82 | + <artifactId>maven-gpg-plugin</artifactId> |
| 83 | + <version>3.2.7</version> |
| 84 | + <executions> |
| 85 | + <execution> |
| 86 | + <id>sign-artifacts</id> |
| 87 | + <phase>verify</phase> |
| 88 | + <goals> |
| 89 | + <goal>sign</goal> |
| 90 | + </goals> |
| 91 | + </execution> |
| 92 | + </executions> |
| 93 | + </plugin> |
| 94 | + </plugins> |
| 95 | + </build> |
| 96 | + |
| 97 | + <!-- |
22 | 98 | <distributionManagement> |
23 | 99 | <repository> |
24 | 100 | <id>github</id> |
25 | 101 | <name>GitHub Packages</name> |
26 | 102 | <url>https://maven.pkg.github.com/OctopusDeploy/openfeature-provider-java</url> |
27 | 103 | </repository> |
28 | 104 | </distributionManagement> |
| 105 | + --> |
29 | 106 |
|
30 | 107 | <dependencies> |
31 | 108 | <dependency> |
|
0 commit comments