Skip to content

Commit

Permalink
Migration to github to open the project's sources.
Browse files Browse the repository at this point in the history
  • Loading branch information
lucboutier committed Oct 7, 2014
1 parent 7179619 commit c56f487
Show file tree
Hide file tree
Showing 1,153 changed files with 91,917 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
#---------------------------------------
# JAVA Project Ignored files
#---------------------------------------

# Eclipse IDE files
*.pydevproject
.project
.metadata
bin/**
tmp/**
tmp/**/*
test-output/**
test-output/**/*
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
**/.settings
.settings/**
.settings/**/*
.loadpath

# External tool builders
.externalToolBuilders/

# Generated files in java based project
**/target/*
*.class
alien4cloud-ui/.tern-project
alien4cloud-common/src/test/java/META-INF/MANIFEST.MF
alien4cloud-common/.gitignore
alien4cloud-paas-core/.gitignore
alien4cloud-rest-api/.gitignore
alien4cloud-auth-rest/.gitignore
alien4cloud-compilation-tool/.gitignore
alien4cloud-mock-paas-provider-plugin/.gitignore

/data/
/target/
124 changes: 124 additions & 0 deletions alien4cloud-common/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
<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>alien4cloud</groupId>
<artifactId>alien4cloud-parent</artifactId>
<version>0.0.14-SNAPSHOT</version>
</parent>
<artifactId>alien4cloud-common</artifactId>
<name>Alien 4 Cloud Common</name>
<description>Contains classes common to all alien's subprojects.</description>

<properties>
<sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
<sonar.language>java</sonar.language>
<sonar.jacoco.reportPath>${project.basedir}/../target/jacoco.exec</sonar.jacoco.reportPath>
<sonar.jacoco.itReportPath>${project.basedir}/../target/jacoco-it.exec</sonar.jacoco.itReportPath>
</properties>

<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
</dependency>
<dependency>
<groupId>fr.lucboutier.elasticsearch</groupId>
<artifactId>elasticsearch-mapping</artifactId>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aspects</artifactId>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
</dependency>
<!-- Not every alien project need http client (rest utilities), the one
who uses must add it by it-self in order to not to have to embark http-client
in server web archive -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
<scope>provided</scope>
</dependency>
<!-- Bean validations -->
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
</dependency>
<!-- logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<resources>
<resource>
<directory>src/main/resources/</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>src/main/external-sources</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Loading

0 comments on commit c56f487

Please sign in to comment.