Skip to content

Commit

Permalink
approximate pom
Browse files Browse the repository at this point in the history
  • Loading branch information
elucash committed Sep 16, 2018
1 parent f6545bf commit c4a0dff
Show file tree
Hide file tree
Showing 4 changed files with 372 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
target/
.DS_Store
.buckd/
.classes/
Expand Down
364 changes: 364 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,364 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2018 Immutables Authors and Contributors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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>io.immutables</groupId>
<artifactId>lib</artifactId>
<version>2.7.2-SNAPSHOT</version>

<name>${project.groupId}.${project.artifactId}</name>
<description>Experimental classes related to the next generation of Immutables library.</description>
<url>http://immutables.io</url>

<organization>
<name>The Immutables authors</name>
<url>http://immutables.io</url>
</organization>

<developers>
<developer>
<id>elucash</id>
<name>Ievgen "Eugene" Lukash</name>
<email>e.lucash@gmail.com</email>
<timezone>-8</timezone>
</developer>
</developers>

<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>22.0</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>org.immutables</groupId>
<artifactId>value</artifactId>
<version>2.5.6</version>
</dependency>
<dependency>
<groupId>org.immutables</groupId>
<artifactId>trees</artifactId>
<version>2.5.6</version>
</dependency>
<dependency>
<groupId>org.immutables</groupId>
<artifactId>ordinal</artifactId>
<version>2.5.6</version>
</dependency>
<dependency>
<groupId>org.immutables</groupId>
<artifactId>generator-processor</artifactId>
<version>2.5.6</version>
<classifier>luggage</classifier>
</dependency>
</dependencies>

<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>
<comments>For all code here</comments>
</license>
</licenses>

<scm>
<connection>scm:git:https://github.com/immutables/io.git</connection>
<developerConnection>scm:git:git@github.com:immutables/io.git</developerConnection>
<url>https://github.com/immutables/io</url>
</scm>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<retro.version>2.5.1</retro.version>
<module.name>${project.groupId}.${project.artifactId}</module.name>
<sonatypeOssDistMgmtSnapshotsUrl></sonatypeOssDistMgmtSnapshotsUrl>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>

<repositories>
<repository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>

<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Release Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
<resources>
<resource>
<directory>src</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
<testResources>
<testResource>
<directory>test</directory>
<excludes>
<exclude>**/Test*.java</exclude>
</excludes>
</testResource>
</testResources>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>

<executions>
<execution>
<id>default-jar</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
<manifestEntries>
<Automatic-Module-Name>${module.name}</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</execution>
<execution>
<id>test-jar</id>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<useIncrementalCompilation>false</useIncrementalCompilation>
<compilerArgs>
<arg>-Xlint:unchecked</arg>
</compilerArgs>
<compilerArguments>
<Xmaxerrs>1000000</Xmaxerrs>
</compilerArguments>
</configuration>
</plugin>
<plugin>
<!-- This plugin isn't strictly necessary; without it the generated
sources are compiled just fine. It's here to make importing the project
into Eclipse using M2Eclipse a much smoother process. Thanks to this
configuration users won't have to manually add each generated source
directory to the build path. -->
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.12</version>
<executions>
<execution>
<id>add-source</id>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/generated-sources/annotations</source>
</sources>
</configuration>
</execution>
<execution>
<id>add-test-source</id>
<goals>
<goal>add-test-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/generated-test-sources/test-annotations</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.2</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>(,2.1.0),(2.1.0,2.2.0),(2.2.0,)</version>
<message>Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively.</message>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.1</version>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
<useReleaseProfile>false</useReleaseProfile>
<arguments>-Psonatype-oss-release</arguments>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>

<profiles>
<profile>
<id>sonatype-oss-release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<configuration>
<quiet>true</quiet>
<nonavbar>true</nonavbar>
<notree>true</notree>
<nocomment>true</nocomment>
<nohelp>true</nohelp>
<minmemory>1G</minmemory>
<maxmemory>2G</maxmemory>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>lint-javadoc</id>
<build>
<plugins>
<plugin>
<!-- Used to validate/lint javadocs -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<configuration>
<quiet>true</quiet>
<nonavbar>true</nonavbar>
<notree>true</notree>
<nocomment>true</nocomment>
<nohelp>true</nohelp>
<minmemory>1G</minmemory>
<maxmemory>2G</maxmemory>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>
8 changes: 6 additions & 2 deletions prj.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,19 @@ l.project({
immutables_ordinal: 'org.immutables:ordinal:2.5.6',
immutables_annotations: 'org.immutables:value:2.5.6:annotations',
immutables_generator: 'org.immutables:generator-processor:2.5.6:luggage',
//
// jackson: 'com.fasterxml.jackson.core:jackson-core:2.9.6',
//jackson_yaml: 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.9.6',
// snake_yaml: 'org.yaml:snakeyaml:1.15',
//jackson_xml: 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.9.6',
// immutables_gson: 'org.immutables:gson:2.5.6',
// gson: 'com.google.code.gson:gson:2.8.0',
// jackson: 'com.fasterxml.jackson.core:jackson-core:2.8.5',
// jackson_yaml: 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.8.5',
// retrofit: 'com.squareup.retrofit2:retrofit:2.1.0',
// retrofit_gson: 'com.squareup.retrofit2:converter-gson:2.1.0',
// okhttp: 'com.squareup.okhttp3:okhttp:3.3.0',
// okio: 'com.squareup.okio:okio:1.11.0',
// snake_yaml: 'org.yaml:snakeyaml:1.15',
// jackson: 'com.fasterxml.jackson.core:jackson-core:2.9.6',
},
deps: {
junit: ['hamcrest'],
Expand Down
1 change: 1 addition & 0 deletions src/io/immutables/build/maven/BUCK
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
java_package('maven')

0 comments on commit c4a0dff

Please sign in to comment.