opentracing-api-0.33.0.pom 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright 2016-2019 The OpenTracing Authors
  4. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
  5. in compliance with the License. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software distributed under the License
  8. is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
  9. or implied. See the License for the specific language governing permissions and limitations under
  10. the License.
  11. -->
  12. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  13. <modelVersion>4.0.0</modelVersion>
  14. <parent>
  15. <groupId>io.opentracing</groupId>
  16. <artifactId>parent</artifactId>
  17. <version>0.33.0</version>
  18. </parent>
  19. <artifactId>opentracing-api</artifactId>
  20. <name>OpenTracing API</name>
  21. <description>OpenTracing Java API</description>
  22. <properties>
  23. <main.basedir>${project.basedir}/..</main.basedir>
  24. <main.java.version>1.6</main.java.version>
  25. <main.signature.artifact>java16</main.signature.artifact>
  26. </properties>
  27. <build>
  28. <plugins>
  29. <plugin>
  30. <artifactId>maven-jar-plugin</artifactId>
  31. <configuration>
  32. <archive>
  33. <manifestEntries>
  34. <Automatic-Module-Name>io.opentracing.api</Automatic-Module-Name>
  35. </manifestEntries>
  36. </archive>
  37. </configuration>
  38. </plugin>
  39. </plugins>
  40. </build>
  41. </project>