Skip to content

Commit

Permalink
initial project setup
Browse files Browse the repository at this point in the history
  • Loading branch information
eolivelli committed Mar 18, 2016
1 parent 3b4c617 commit ecf230a
Show file tree
Hide file tree
Showing 6 changed files with 71 additions and 1 deletion.
19 changes: 19 additions & 0 deletions herddb-core/nb-configuration.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<project-shared-configuration>
<!--
This file contains additional configuration written by modules in the NetBeans IDE.
The configuration is intended to be shared among all the users of project and
therefore it is assumed to be part of version control checkout.
Without this configuration present, some functionality in the IDE may be limited or fail altogether.
-->
<properties xmlns="http://www.netbeans.org/ns/maven-properties-data/1">
<!--
Properties that influence various parts of the IDE, especially code formatting and the like.
You can copy and paste the single properties, into the pom.xml file and the IDE will pick them up.
That way multiple projects can share the same settings (useful for formatting rules for example).
Any value defined here will override the pom.xml file value but is only applicable to the current project.
-->
<netbeans.hint.licensePath>${project.basedir}/../licenseheader.txt</netbeans.hint.licensePath>
<netbeans.compile.on.save>none</netbeans.compile.on.save>
</properties>
</project-shared-configuration>
19 changes: 19 additions & 0 deletions herddb-core/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?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.herddb</groupId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>..</relativePath>
<artifactId>herddb-parent</artifactId>
</parent>
<artifactId>herddb-core</artifactId>
<name>HerdDB Core</name>
<packaging>jar</packaging>
<dependencies>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
6 changes: 6 additions & 0 deletions licences/bookkeeper.NOTICE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Apache BookKeeper
Copyright 2011 The Apache Software Foundation

This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).

5 changes: 5 additions & 0 deletions licences/zookeeper.NOTICE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Apache ZooKeeper
Copyright 2009-2014 The Apache Software Foundation

This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
19 changes: 19 additions & 0 deletions licenseheader.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/*
Licensed to Diennea S.r.l. under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. Diennea S.r.l. licenses this file
to you 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.

*/
4 changes: 3 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.herddb</groupId>
<artifactId>herddb-parent</artifactId>
<version>0.0.1-SNAPHOST</version>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Herd DB</name>
<url>http://herddb.org</url>
Expand Down Expand Up @@ -69,6 +69,7 @@
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>herddb-core</module>
</modules>
<distributionManagement>
<repository>
Expand Down Expand Up @@ -115,6 +116,7 @@
<activeByDefault>false</activeByDefault>
</activation>
<modules>
<module>herddb-core</module>
</modules>
<distributionManagement>
<snapshotRepository>
Expand Down

0 comments on commit ecf230a

Please sign in to comment.