inmobicmp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.inmobi</groupId> <artifactId>inmobicmp</artifactId> <version>2.3.0</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.inmobi</groupId> <artifactId>inmobicmp</artifactId> <version>2.3.0</version> <packaging>pom</packaging> <name>Inmobi cmp SDK</name> <description>InMobi Consent Management Platform for Android</description> <url>https://github.com/InMobi/inmobicmp-android</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <developers> <developer> <id>Inmobicmp</id> <name>Inmobicmp</name> </developer> </developers> <scm> <connection>scm:git:https://github.tools.inmobi.com/CHOICE-Cmp-TCFv2-Android</connection> <developerConnection>scm:git:https://github.tools.inmobi.com/CHOICE-Cmp-TCFv2-Android.git</developerConnection> <url>scm:git:https://github.tools.inmobi.com/CHOICE-Cmp-TCFv2-Android</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <gpg.skip>true</gpg.skip> <aar.file.name>${project.artifactId}-${project.version}.aar</aar.file.name> <pom.file.name>${project.artifactId}-${project.version}.pom</pom.file.name> <sources.file.name>${project.artifactId}-${project.version}-sources.jar</sources.file.name> <javadoc.file.name>${project.artifactId}-${project.version}-javadoc.jar</javadoc.file.name> <build.output.directory>${project.basedir}/target</build.output.directory> </properties> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <id>attach-artifacts</id> <phase>package</phase> <goals> <goal>attach-artifact</goal> </goals> <configuration> <artifacts> <artifact> <file>${build.output.directory}/${aar.file.name}</file> <type>aar</type> </artifact> </artifacts> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> <skip>${gpg.skip}</skip> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.4.0</version> <extensions>true</extensions> <configuration> <publishingServerId>ossrh</publishingServerId> <autoPublish>false</autoPublish> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>3.3.2</version> </plugin> </plugins> </build> </project>