META-INF.maven.com.google.oauth-client.google-oauth-client-servlet.pom.xml Maven / Gradle / Ivy
<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> <parent> <groupId>com.google.oauth-client</groupId> <artifactId>google-oauth-client-parent</artifactId> <version>1.31.5</version><!-- {x-version-update:google-oauth-client:current} --> <relativePath>../pom.xml</relativePath> </parent> <artifactId>google-oauth-client-servlet</artifactId> <name>Servlet and JDO extensions to the Google OAuth Client Library for Java.</name> <build> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <links> <link>https://download.oracle.com/javase/7/docs/api/</link> <link>https://cloud.google.com/appengine/docs/standard/java/javadoc/</link> <link>https://googleapis.dev/java/google-http-client/${project.http.version}/</link> </links> <doctitle>${project.name} ${project.version}</doctitle> <windowtitle>${project.artifactId} ${project.version}</windowtitle> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> <manifestEntries> <Automatic-Module-Name>com.google.api.client.extensions.servlet.auth</Automatic-Module-Name> </manifestEntries> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>source-jar</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.datanucleus</groupId> <artifactId>datanucleus-maven-plugin</artifactId> <version>${project.datanucleus-maven-plugin.version}</version> <configuration> <api>JDO</api> <verbose>true</verbose> </configuration> <dependencies> <dependency> <groupId>org.datanucleus</groupId> <artifactId>datanucleus-core</artifactId> <version>${project.datanucleus-core.version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.datanucleus</groupId> <artifactId>datanucleus-api-jdo</artifactId> <version>${project.datanucleus-api-jdo.version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>javax.jdo</groupId> <artifactId>jdo2-api</artifactId> <version>${project.jdo2-api.version}</version> <scope>runtime</scope> </dependency> </dependencies> <executions> <execution> <phase>process-classes</phase> <goals> <goal>enhance</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.5.4</version> <configuration> <instructions> <Bundle-SymbolicName>com.google.oauth-client-servlet</Bundle-SymbolicName> <Bundle-RequiredExecutionEnvironment>JavaSE-1.7</Bundle-RequiredExecutionEnvironment> </instructions> </configuration> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.google.oauth-client</groupId> <artifactId>google-oauth-client</artifactId> </dependency> <dependency> <groupId>com.google.http-client</groupId> <artifactId>google-http-client</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>javax.jdo</groupId> <artifactId>jdo2-api</artifactId> </dependency> </dependencies> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy