Skip to content
This repository has been archived by the owner on Apr 20, 2024. It is now read-only.

Commit

Permalink
Merge branch 'release/0.0.1'
Browse files Browse the repository at this point in the history
Release: com.io7m.waxmill 0.0.1
Change: Initial testing release
  • Loading branch information
io7m committed Jul 11, 2020
2 parents a156be4 + b42e68b commit bb8d476
Show file tree
Hide file tree
Showing 420 changed files with 40,478 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*.iml
.idea
pom.xml.versionsBackup
target
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule ".jenkins"]
path = .jenkins
url = https://www.github.com/io7m/jenkinsfiles
1 change: 1 addition & 0 deletions .jenkins
Submodule .jenkins added at 61a9d1
21 changes: 21 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
language: java

jdk:
- oraclejdk11
- openjdk11

before_install:
- wget https://archive.apache.org/dist/maven/maven-3/3.6.2/binaries/apache-maven-3.6.2-bin.zip
- unzip -qq apache-maven-3.6.2-bin.zip
- export M2_HOME=$PWD/apache-maven-3.6.2
- export PATH=$M2_HOME/bin:$PATH

install: true

script:
- mvn --errors clean verify site
- bash <(curl -s https://codecov.io/bash) -f ./com.io7m.waxmill.tests/target/site/jacoco-aggregate/jacoco.xml

notifications:
irc: "chat.freenode.net#io7m"

13 changes: 13 additions & 0 deletions README-CHANGES.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<c:changelog project="com.io7m.waxmill" xmlns:c="urn:com.io7m.changelog:4.0">
<c:releases>
<c:release date="2020-07-11T17:33:12+00:00" ticket-system="com.github.io7m.waxmill" version="0.0.1">
<c:changes>
<c:change date="2020-07-11T17:33:12+00:00" summary="Initial testing release"/>
</c:changes>
</c:release>
</c:releases>
<c:ticket-systems>
<c:ticket-system default="true" id="com.github.io7m.waxmill" url="https://www.github.com/io7m/waxmill/issues/"/>
</c:ticket-systems>
</c:changelog>
13 changes: 13 additions & 0 deletions README-LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Copyright © 2020 Mark Raynsford <code@io7m.com> https://www.io7m.com

Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
waxmill
===

[![Travis](https://img.shields.io/travis/io7m/waxmill.png?style=flat-square)](https://travis-ci.org/io7m/waxmill)
[![Maven Central](https://img.shields.io/maven-central/v/com.io7m.waxmill/com.io7m.waxmill.png?style=flat-square)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.io7m.waxmill%22)
[![Maven Central (snapshot)](https://img.shields.io/nexus/s/https/oss.sonatype.org/com.io7m.waxmill/com.io7m.waxmill.svg?style=flat-square)](https://oss.sonatype.org/content/repositories/snapshots/com/io7m/waxmill/)
[![Codacy grade](https://img.shields.io/codacy/grade/91fb072385cb45beaeae138aa24706fa.png?style=flat-square)](https://www.codacy.com/app/github_79/waxmill)
[![Codecov](https://img.shields.io/codecov/c/github/io7m/waxmill.png?style=flat-square)](https://codecov.io/gh/io7m/waxmill)

![waxmill](./src/site/resources/waxmill.jpg?raw=true)

78 changes: 78 additions & 0 deletions com.io7m.waxmill.boot/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
<?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>
<artifactId>com.io7m.waxmill</artifactId>
<groupId>com.io7m.waxmill</groupId>
<version>0.0.1</version>
</parent>

<artifactId>com.io7m.waxmill.boot</artifactId>

<description>FreeBSD BHyve Manager (Boot configurations)</description>
<name>com.io7m.waxmill.boot</name>
<url>https://www.github.com/io7m/waxmill</url>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>com.io7m.waxmill.machines</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>com.io7m.waxmill.client.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>com.io7m.waxmill.exceptions</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>com.io7m.waxmill.strings.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>com.io7m.waxmill.process.api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>com.io7m.waxmill.locks</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>com.io7m.jaffirm</groupId>
<artifactId>com.io7m.jaffirm.core</artifactId>
</dependency>
<dependency>
<groupId>com.io7m.junreachable</groupId>
<artifactId>com.io7m.junreachable.core</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>

<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.annotation.bundle</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.annotation.versioning</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>

</project>

0 comments on commit bb8d476

Please sign in to comment.