annotations
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.treblereel.j2cl.processors</groupId> <artifactId>annotations</artifactId> <version>0.8</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.treblereel.j2cl.processors</groupId> <artifactId>parent</artifactId> <version>0.8</version> </parent> <artifactId>annotations</artifactId> <packaging>jar</packaging> <name>GWT3 annotations</name> <description>This artifact contains annotations for GWT3 processors</description> <url>https://github.com/treblereel/gwt3-processors</url> <developers> <developer> <id>treblereel</id> <name>Dmitrii Tikhomirov</name> <email>chani.liet@gmail.com</email> </developer> </developers> <licenses> <license> <name>Apache License Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <organization> <name>Treblereel</name> <url>https://github.com/treblereel</url> </organization> <dependencies> <dependency> <groupId>org.treblereel.j2cl.processors</groupId> <artifactId>common</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.java</include> <include>**/*.js</include> </includes> </resource> <resource> <directory>src/main/resources</directory> </resource> </resources> <plugins> <plugin> <groupId>com.spotify.fmt</groupId> <artifactId>fmt-maven-plugin</artifactId> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> </plugin> </plugins> </build> </project>