This repository has been archived by the owner on Feb 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit bd348bf
Showing
99 changed files
with
12,811 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
target* | ||
.project* | ||
.classpath* | ||
.settings* | ||
.scala_dependencies* | ||
*logback.xml | ||
*logback-test.xml | ||
hs_err_*.log |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
Copyright 2011 Normation SAS | ||
|
||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU Affero General Public License as | ||
published by the Free Software Foundation, either version 3 of the | ||
License, or (at your option) any later version. | ||
|
||
In accordance with the terms of section 7 (7. Additional Terms.) of | ||
the GNU Affero GPL v3, the copyright holders add the following | ||
Additional permissions: | ||
Notwithstanding to the terms of section 5 (5. Conveying Modified Source | ||
Versions) and 6 (6. Conveying Non-Source Forms.) of the GNU Affero GPL v3 | ||
licence, when you create a Related Module, this Related Module is | ||
not considered as a part of the work and may be distributed under the | ||
license agreement of your choice. | ||
A "Related Module" means a set of sources files including their | ||
documentation that, without modification of the Source Code, enables | ||
supplementary functions or services in addition to those offered by | ||
the Software. | ||
|
||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU Affero General Public License for more details. | ||
|
||
You should have received a copy of the GNU Affero General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/agpl.html>. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
<!-- | ||
Copyright 2011 Normation SAS | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU Affero General Public License as | ||
published by the Free Software Foundation, either version 3 of the | ||
License, or (at your option) any later version. | ||
In accordance with the terms of section 7 (7. Additional Terms.) of | ||
the GNU Affero GPL v3, the copyright holders add the following | ||
Additional permissions: | ||
Notwithstanding to the terms of section 5 (5. Conveying Modified Source | ||
Versions) and 6 (6. Conveying Non-Source Forms.) of the GNU Affero GPL v3 | ||
licence, when you create a Related Module, this Related Module is | ||
not considered as a part of the work and may be distributed under the | ||
license agreement of your choice. | ||
A "Related Module" means a set of sources files including their | ||
documentation that, without modification of the Source Code, enables | ||
supplementary functions or services in addition to those offered by | ||
the Software. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU Affero General Public License for more details. | ||
You should have received a copy of the GNU Affero General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/agpl.html>. | ||
--> | ||
|
||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>com.normation.cfclerk</groupId> | ||
<artifactId>cfclerk-parent</artifactId> | ||
<version>0.10.1-SNAPSHOT</version> | ||
</parent> | ||
|
||
<groupId>com.normation.cfclerk</groupId> | ||
<artifactId>cfclerk-core</artifactId> | ||
<packaging>jar</packaging> | ||
<version>0.10.1-SNAPSHOT</version> | ||
|
||
<description> | ||
This is the API/Core lib module that writes the promises of machines | ||
</description> | ||
|
||
<repositories> | ||
<repository> | ||
<id>jgit-repository</id> | ||
<url>http://download.eclipse.org/jgit/maven</url> | ||
</repository> | ||
</repositories> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.normation</groupId> | ||
<artifactId>utils</artifactId> | ||
<version>0.10.1-SNAPSHOT</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.antlr</groupId> | ||
<artifactId>stringtemplate</artifactId> | ||
<version>3.2.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-io</groupId> | ||
<artifactId>commons-io</artifactId> | ||
<version>2.0.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.jgit</groupId> | ||
<artifactId>org.eclipse.jgit</artifactId> | ||
<version>1.0.0.201106090707-r</version> | ||
</dependency> | ||
|
||
<!-- Test dependencies --> | ||
<dependency> | ||
<groupId>com.normation</groupId> | ||
<artifactId>spring-run-dependencies</artifactId> | ||
<version>${spring-run-dep-version}</version> | ||
<type>pom</type> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-test</artifactId> | ||
<version>${spring-version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
</project> |
Oops, something went wrong.