![JAR search and dependency download from the Maven repository](/logo.png)
protoj.lang.internal.sample.snippet.acme-publish.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of protoj-jdk6 Show documentation
Show all versions of protoj-jdk6 Show documentation
ProtoJ: the pure java build library with maximum dependencies
The newest version!
<?xml version="1.0" encoding="UTF-8"?> <!-- A standard maven file describing the artifact to be uploaded. It uses velocity markup to avoid hard-coding specific values. --> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <!-- velocity markup to access UseCaseUploadMavenRepo.getGroupId() --> <groupId>${snippet.groupid}</groupId> <artifactId>acme</artifactId> <packaging>jar</packaging> <name>Acme</name> <!-- velocity markup to access UseCaseUploadMavenRepo.getVersion() --> <version>${snippet.version}</version> <description>Acme project</description> <url>http://acme/project/url/</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>http://acme/source/code</url> </scm> <dependencies> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.15</version> </dependency> </dependencies> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy