Skip to content

Commit

Permalink
use new .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
huanfachen committed Jun 5, 2017
1 parent d687bc9 commit 37e899e
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
.project
**/.settings/**
**/.idea/**
pom.xml


/target/
32 changes: 32 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.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>
<!-- inherit from james parent POM -->
<parent>
<groupId>org.jamesframework</groupId>
<artifactId>james</artifactId>
<version>1.3-SNAPSHOT</version>
<relativePath>../james/james</relativePath>
</parent>
<!-- james core specifications -->
<artifactId>james-core</artifactId>
<version>1.3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>james-core</name>
<description>
The JAMES core module is part of the JAMES framework for discrete optimization
using local search metaheuristics in Java. The core contains many general components
for both problem specification and search application. It includes a wide range of
generic optimization algorithms to solve the specified problems. Moreover, the core
provides implementations of specific components for subset selection.
</description>
<scm>
<connection>scm:git:git@github.com:hdbeukel/james-core.git</connection>
<developerConnection>scm:git:git@github.com:hdbeukel/james-core.git</developerConnection>
<url>https://github.com/hdbeukel/james-core</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>

0 comments on commit 37e899e

Please sign in to comment.