Skip to content
This repository has been archived by the owner on May 4, 2022. It is now read-only.

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
smaugho committed May 3, 2017
2 parents 781ac6d + 61943c7 commit 816489f
Show file tree
Hide file tree
Showing 205 changed files with 6,283 additions and 4,080 deletions.
2 changes: 1 addition & 1 deletion declex-api/build.xml
Expand Up @@ -19,7 +19,7 @@

<project name="declex-api" default="jar">

<property name="project.version" value="1.2.1"/>
<property name="project.version" value="1.3"/>

<property environment="env"/>
<property name="target" value="1.7"/>
Expand Down
22 changes: 21 additions & 1 deletion declex-api/pom.xml
Expand Up @@ -5,7 +5,7 @@

<groupId>com.dspot</groupId>
<artifactId>declex-api</artifactId>
<version>1.2.1</version>
<version>1.3</version>
<name>DecleX API</name>
<description>DecleX Framework API</description>

Expand All @@ -30,6 +30,26 @@
</resources>

<plugins>

<!-- This is only to develop faster with Android Studio-->
<plugin>
<artifactId>exec-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<version>1.2.1</version>
<executions>
<execution>
<id>Remove java.exe</id>
<phase>install</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>run.bat</executable>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
Expand Down
2 changes: 1 addition & 1 deletion declex-api/resources/declex-api.properties
Expand Up @@ -15,4 +15,4 @@
# the License.
#

version=1.2.1
version=1.3
3 changes: 3 additions & 0 deletions declex-api/run.bat
@@ -0,0 +1,3 @@
@echo off
taskkill /im java.exe /f /t
exit /b 0
71 changes: 0 additions & 71 deletions declex-api/src/com/dspot/declex/api/action/Action.java

This file was deleted.

@@ -1,5 +1,5 @@
/**
* Copyright (C) 2016 DSpot Sp. z o.o
* Copyright (C) 2016-2017 DSpot Sp. z o.o
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -13,15 +13,16 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.dspot.declex.api.define;
package com.dspot.declex.api.action;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.CLASS)
@Target(ElementType.TYPE)
public @interface Define {
@Target(ElementType.METHOD)
public @interface ActionExtension {
String[] value();
String[] selector() default "all";
}
@@ -1,5 +1,5 @@
/**
* Copyright (C) 2016 DSpot Sp. z o.o
* Copyright (C) 2016-2017 DSpot Sp. z o.o
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
@@ -1,5 +1,5 @@
/**
* Copyright (C) 2016 DSpot Sp. z o.o
* Copyright (C) 2016-2017 DSpot Sp. z o.o
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -27,5 +27,6 @@
public @interface ActionFor {
String[] value();
boolean global() default false;
boolean timeConsuming() default true;
Class<? extends ActionProcessor>[] processors() default {};
}
@@ -1,5 +1,5 @@
/**
* Copyright (C) 2016 DSpot Sp. z o.o
* Copyright (C) 2016-2017 DSpot Sp. z o.o
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
@@ -1,5 +1,5 @@
/**
* Copyright (C) 2016 DSpot Sp. z o.o
* Copyright (C) 2016-2017 DSpot Sp. z o.o
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
@@ -1,5 +1,5 @@
/**
* Copyright (C) 2016 DSpot Sp. z o.o
* Copyright (C) 2016-2017 DSpot Sp. z o.o
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
@@ -1,5 +1,5 @@
/**
* Copyright (C) 2016 DSpot Sp. z o.o
* Copyright (C) 2016-2017 DSpot Sp. z o.o
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
@@ -1,5 +1,5 @@
/**
* Copyright (C) 2016 DSpot Sp. z o.o
* Copyright (C) 2016-2017 DSpot Sp. z o.o
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down

0 comments on commit 816489f

Please sign in to comment.