Advertisement
Guest User

at4j

a guest
Feb 6th, 2024
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.20 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  6. <modelVersion>4.0.0</modelVersion>
  7. <groupId>io.github.brenoepics</groupId>
  8. <artifactId>at4j</artifactId>
  9. <version>1.0.0</version>
  10.  
  11. <name>Azure Translator For Java</name>
  12. <description>
  13. A simple Java library to translate text using Azure AI Cognitive Services.
  14. Fast and easy to configure.
  15. </description>
  16. <url>https://github.com/brenoepics/at4j</url>
  17. <licenses>
  18. <license>
  19. <name>Apache License 2.0</name>
  20. <url>https://github.com/brenoepics/at4j/blob/main/LICENSE</url>
  21. </license>
  22. </licenses>
  23. <developers>
  24. <developer>
  25. <name>Breno Andrade</name>
  26. <email>ibreno076@gmail.com</email>
  27. </developer>
  28. </developers>
  29. <scm>
  30. <connection>scm:git:git://github.com/simpligility/ossrh-demo.git</connection>
  31. <developerConnection>scm:git:ssh://github.com:simpligility/ossrh-demo.git</developerConnection>
  32. <url>http://github.com/simpligility/ossrh-demo/tree/master</url>
  33. </scm>
  34. <distributionManagement>
  35. <snapshotRepository>
  36. <id>sonatype-nexus-snapshots</id>
  37. <name>Sonatype Nexus Snapshots</name>
  38. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  39. </snapshotRepository>
  40. <repository>
  41. <id>sonatype-nexus-staging</id>
  42. <name>Nexus Release Repository</name>
  43. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
  44. </repository>
  45. </distributionManagement>
  46. <properties>
  47. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  48. <maven.compiler.source>11</maven.compiler.source>
  49. <maven.compiler.target>11</maven.compiler.target>
  50. <sonar.organization>brenoepic</sonar.organization>
  51. <sonar.host.url>https://sonarcloud.io</sonar.host.url>
  52. </properties>
  53. <dependencies>
  54. <dependency>
  55. <groupId>org.apache.logging.log4j</groupId>
  56. <artifactId>log4j-api</artifactId>
  57. <version>2.22.1</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.fasterxml.jackson.core</groupId>
  61. <artifactId>jackson-databind</artifactId>
  62. <version>2.16.1</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.junit.jupiter</groupId>
  66. <artifactId>junit-jupiter</artifactId>
  67. <version>5.10.2</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.mockito</groupId>
  71. <artifactId>mockito-core</artifactId>
  72. <version>5.10.0</version>
  73. <scope>test</scope>
  74. </dependency>
  75. </dependencies>
  76. <build>
  77. <plugins>
  78. <!-- Maven Javadoc Plugin -->
  79. <plugin>
  80. <groupId>org.apache.maven.plugins</groupId>
  81. <artifactId>maven-javadoc-plugin</artifactId>
  82. <version>3.6.3</version>
  83. <executions>
  84. <execution>
  85. <id>attach-javadocs</id>
  86. <phase>package</phase>
  87. <goals>
  88. <goal>jar</goal>
  89. </goals>
  90. </execution>
  91. </executions>
  92. </plugin>
  93. <plugin>
  94. <groupId>org.apache.maven.plugins</groupId>
  95. <artifactId>maven-gpg-plugin</artifactId>
  96. <version>3.1.0</version>
  97. <configuration>
  98. </configuration>
  99. <executions>
  100. <execution>
  101. <id>sign-artifacts</id>
  102. <phase>verify</phase>
  103. <goals>
  104. <goal>sign</goal>
  105. </goals>
  106. </execution>
  107. </executions>
  108. </plugin>
  109. <!-- Maven Resources Plugin -->
  110. <plugin>
  111. <groupId>org.apache.maven.plugins</groupId>
  112. <artifactId>maven-resources-plugin</artifactId>
  113. <version>3.3.1</version>
  114. <executions>
  115. <execution>
  116. <id>copy-resources</id>
  117. <phase>validate</phase>
  118. <goals>
  119. <goal>copy-resources</goal>
  120. </goals>
  121. <configuration>
  122. <outputDirectory>${project.build.outputDirectory}</outputDirectory>
  123. <resources>
  124. <resource>
  125. <directory>${project.basedir}/src/main/resources</directory>
  126. <filtering>true</filtering>
  127. </resource>
  128. </resources>
  129. </configuration>
  130. </execution>
  131. </executions>
  132. </plugin>
  133. <plugin>
  134. <groupId>org.sonatype.central</groupId>
  135. <artifactId>central-publishing-maven-plugin</artifactId>
  136. <version>0.3.0</version>
  137. <extensions>true</extensions>
  138. <configuration>
  139. <publishingServerId>central</publishingServerId>
  140. <tokenAuth>true</tokenAuth>
  141. </configuration>
  142. </plugin>
  143. <plugin>
  144. <groupId>org.apache.maven.plugins</groupId>
  145. <artifactId>maven-source-plugin</artifactId>
  146. <version>3.3.0</version>
  147. <executions>
  148. <execution>
  149. <id>attach-sources</id>
  150. <phase>package</phase>
  151. <goals>
  152. <goal>jar</goal>
  153. </goals>
  154. </execution>
  155. </executions>
  156. </plugin>
  157. <plugin>
  158. <groupId>org.apache.maven.plugins</groupId>
  159. <artifactId>maven-surefire-plugin</artifactId>
  160. <version>3.2.5</version>
  161. </plugin>
  162. <plugin>
  163. <groupId>org.jacoco</groupId>
  164. <artifactId>jacoco-maven-plugin</artifactId>
  165. <version>0.8.11</version>
  166. <executions>
  167. <execution>
  168. <id>prepare-agent</id>
  169. <goals>
  170. <goal>prepare-agent</goal>
  171. </goals>
  172. </execution>
  173. <execution>
  174. <id>report</id>
  175. <goals>
  176. <goal>report</goal>
  177. </goals>
  178. </execution>
  179. </executions>
  180. </plugin>
  181. </plugins>
  182. </build>
  183. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement