|
7 | 7 | <packaging>jar</packaging> |
8 | 8 |
|
9 | 9 | <name>langfuse-java</name> |
| 10 | + <description>Java client for the Langfuse API</description> |
10 | 11 | <url>https://langfuse.com</url> |
11 | 12 |
|
| 13 | + <licenses> |
| 14 | + <license> |
| 15 | + <name>MIT License</name> |
| 16 | + <url>https://opensource.org/licenses/MIT</url> |
| 17 | + <distribution>repo</distribution> |
| 18 | + </license> |
| 19 | + </licenses> |
| 20 | + |
| 21 | + <developers> |
| 22 | + <developer> |
| 23 | + <name>Langfuse Team</name> |
| 24 | + <email>support@langfuse.com</email> |
| 25 | + <organization>Langfuse</organization> |
| 26 | + <organizationUrl>https://langfuse.com</organizationUrl> |
| 27 | + </developer> |
| 28 | + </developers> |
| 29 | + |
12 | 30 | <scm> |
13 | 31 | <connection>scm:git:https://github.com/langfuse/langfuse-java.git</connection> |
14 | | - <tag>HEAD</tag> |
15 | | - </scm> |
| 32 | + <developerConnection>scm:git:https://github.com/langfuse/langfuse-java.git</developerConnection> |
| 33 | + <url>https://github.com/langfuse/langfuse-java</url> |
| 34 | + <tag>HEAD</tag> |
| 35 | + </scm> |
16 | 36 |
|
17 | 37 | <properties> |
18 | 38 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
21 | 41 | <junit.version>5.9.3</junit.version> |
22 | 42 | </properties> |
23 | 43 |
|
24 | | - <distributionManagement> |
25 | | - <repository> |
26 | | - <id>github</id> |
27 | | - <name>GitHub Packages</name> |
28 | | - <url>https://maven.pkg.github.com/langfuse/langfuse-java</url> |
29 | | - </repository> |
30 | | - </distributionManagement> |
| 44 | + <profiles> |
| 45 | + <profile> |
| 46 | + <id>central</id> |
| 47 | + <build> |
| 48 | + <plugins> |
| 49 | + <!-- GPG Signing --> |
| 50 | + <plugin> |
| 51 | + <groupId>org.apache.maven.plugins</groupId> |
| 52 | + <artifactId>maven-gpg-plugin</artifactId> |
| 53 | + <version>3.1.0</version> |
| 54 | + <executions> |
| 55 | + <execution> |
| 56 | + <id>sign-artifacts</id> |
| 57 | + <phase>verify</phase> |
| 58 | + <goals> |
| 59 | + <goal>sign</goal> |
| 60 | + </goals> |
| 61 | + <configuration> |
| 62 | + <!-- Prevent gpg from using pinentry programs --> |
| 63 | + <gpgArguments> |
| 64 | + <arg>--pinentry-mode</arg> |
| 65 | + <arg>loopback</arg> |
| 66 | + </gpgArguments> |
| 67 | + </configuration> |
| 68 | + </execution> |
| 69 | + </executions> |
| 70 | + </plugin> |
| 71 | + |
| 72 | + <!-- Central Publishing Plugin --> |
| 73 | + <plugin> |
| 74 | + <groupId>org.sonatype.central</groupId> |
| 75 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 76 | + <version>0.7.0</version> |
| 77 | + <extensions>true</extensions> |
| 78 | + <configuration> |
| 79 | + <publishingServerId>central</publishingServerId> |
| 80 | + <autoPublish>true</autoPublish> |
| 81 | + </configuration> |
| 82 | + </plugin> |
| 83 | + </plugins> |
| 84 | + </build> |
| 85 | + </profile> |
| 86 | + </profiles> |
| 87 | + |
| 88 | + <build> |
| 89 | + <plugins> |
| 90 | + <!-- Source JAR --> |
| 91 | + <plugin> |
| 92 | + <groupId>org.apache.maven.plugins</groupId> |
| 93 | + <artifactId>maven-source-plugin</artifactId> |
| 94 | + <version>3.3.0</version> |
| 95 | + <executions> |
| 96 | + <execution> |
| 97 | + <id>attach-sources</id> |
| 98 | + <goals> |
| 99 | + <goal>jar-no-fork</goal> |
| 100 | + </goals> |
| 101 | + </execution> |
| 102 | + </executions> |
| 103 | + </plugin> |
| 104 | + |
| 105 | + <!-- Javadoc JAR --> |
| 106 | + <plugin> |
| 107 | + <groupId>org.apache.maven.plugins</groupId> |
| 108 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 109 | + <version>3.6.3</version> |
| 110 | + <executions> |
| 111 | + <execution> |
| 112 | + <id>attach-javadocs</id> |
| 113 | + <goals> |
| 114 | + <goal>jar</goal> |
| 115 | + </goals> |
| 116 | + </execution> |
| 117 | + </executions> |
| 118 | + </plugin> |
| 119 | + </plugins> |
| 120 | + </build> |
31 | 121 |
|
32 | 122 | <dependencies> |
33 | 123 | <!-- Jackson dependencies --> |
|
0 commit comments