sedemo-maven
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.inmobi.ares</groupId> <artifactId>sedemo-maven</artifactId> <version>10.1</version> </dependency>
<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> <groupId>com.inmobi.ares</groupId> <artifactId>sedemo-maven</artifactId> <packaging>jar</packaging> <version>10.1</version> <name>my-app</name> <parent> <groupId>com.inmobi</groupId> <artifactId>inmobi-parent</artifactId> <version>1.2.12</version> </parent> <scm> <connection>scm:git:git@github.tools.inmobi.com:ares/sedemo-maven.git </connection> <url>scm:git:git@github.tools.inmobi.com:ares/sedemo-maven.git</url> <developerConnection> scm:git:git@github.tools.inmobi.com:ares/sedemo-maven.git </developerConnection> <tag>HEAD</tag> </scm> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> </dependencies> <!-- <build>--> <!-- <plugins>--> <!-- <plugin>--> <!-- <!– Build an executable JAR –>--> <!-- <groupId>org.apache.maven.plugins</groupId>--> <!-- <artifactId>maven-jar-plugin</artifactId>--> <!-- <version>3.0.2</version>--> <!-- <configuration>--> <!-- <archive>--> <!-- <manifest>--> <!-- <addClasspath>true</addClasspath>--> <!-- <classpathPrefix>lib/</classpathPrefix>--> <!-- <mainClass>com.mycompany.app.App</mainClass>--> <!-- </manifest>--> <!-- </archive>--> <!-- </configuration>--> <!-- </plugin>--> <!-- </plugins>--> <!-- </build>--> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.8</version> <executions> <execution> <id>attach-artifacts</id> <phase>package</phase> <goals> <goal>attach-artifact</goal> </goals> <configuration> <artifacts> <artifact> <file>maven-central-release.pom</file> <type>xml</type> <classifier>maven-central-upload</classifier> </artifact> </artifacts> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>