Remove common module, rename net to bootstrap

This commit is contained in:
Manfred Karrer 2015-03-13 20:13:18 +01:00
parent c95ad02f29
commit 3a90fcd022
7 changed files with 7 additions and 30 deletions

View file

@ -9,7 +9,7 @@
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>net</artifactId> <artifactId>bootstrap</artifactId>
<build> <build>

Binary file not shown.

View file

@ -0,0 +1,5 @@
#Generated by Maven
#Fri Mar 13 20:11:20 CET 2015
version=0.1.2-SNAPSHOT
groupId=io.bitsquare
artifactId=bootstrap

View file

@ -1,27 +0,0 @@
/*
* This file is part of Bitsquare.
*
* Bitsquare 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.
*
* Bitsquare 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 Bitsquare. If not, see <http://www.gnu.org/licenses/>.
*/
package io.bitsquare.util.tasks;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class TaskInterception {
private static final Logger log = LoggerFactory.getLogger(TaskInterception.class);
public static Class<? extends Task> taskToInterceptBeforeRun;
public static Class<? extends Task> taskToInterceptAfterRun;
}

View file

@ -38,8 +38,7 @@
<modules> <modules>
<module>gui</module> <module>gui</module>
<module>common</module> <module>bootstrap</module>
<module>net</module>
</modules> </modules>
<build> <build>