elemental2-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.google.elemental2</groupId> <artifactId>elemental2-core</artifactId> <version>1.3.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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.google.elemental2</groupId> <artifactId>elemental2-core</artifactId> <version>1.3.1</version> <name>Elemental2 Core</name> <description>Thin Java abstractions for the standard built-in objects for Javascript.</description> <url>https://www.gwtproject.org</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> <connection>scm:git:https://github.com/google/elemental2.git</connection> <developerConnection>scm:git:git@github.com:google/elemental2.git</developerConnection> <url>https://github.com/google/elemental2</url> </scm> <issueManagement> <url>https://github.com/google/elemental2/issues</url> <system>GitHub Issues</system> </issueManagement> <developers> <developer> <name>J2CL Team</name> <organization>Google</organization> <organizationUrl>http://www.google.com</organizationUrl> </developer> </developers> <dependencies> <dependency> <groupId>com.google.jsinterop</groupId> <artifactId>jsinterop-annotations</artifactId> <version>2.0.2</version> </dependency> <dependency> <groupId>com.google.jsinterop</groupId> <artifactId>base</artifactId> <version>1.1.0</version> </dependency> <dependency> <groupId>org.jspecify</groupId> <artifactId>jspecify</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>com.google.elemental2</groupId> <artifactId>elemental2-promise</artifactId> <version>1.3.1</version> </dependency> </dependencies> <properties> <classesDirectory>${project.artifactId}-classes</classesDirectory> <javadocFile>${project.artifactId}-javadoc.jar</javadocFile> <sourcesFile>${project.artifactId}-sources.jar</sourcesFile> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> <configuration> <classesDirectory>${classesDirectory}</classesDirectory> </configuration> <dependencies> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-io</artifactId> <!-- We need at least 3.5.1 to avoid https://github.com/codehaus-plexus/plexus-io/issues/109. Once we upgrade maven-jar-plugin itself to a version new enough to depend on 3.5.1 or higher, we can remove this override. --> <version>3.5.1</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.9.1</version> <executions> <execution> <id>attach-artifacts</id> <phase>package</phase> <goals> <goal>attach-artifact</goal> </goals> <configuration> <artifacts> <artifact> <file>${javadocFile}</file> <type>jar</type> <classifier>javadoc</classifier> </artifact> <artifact> <file>${sourcesFile}</file> <type>jar</type> <classifier>sources</classifier> </artifact> </artifacts> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>${autoPublish}</autoPublish> </configuration> </plugin> </plugins> </build></project>