Skip to content

Commit

Permalink
Cambios en build path
Browse files Browse the repository at this point in the history
  • Loading branch information
yamelsenih committed Jan 10, 2020
1 parent 6ff0014 commit 26bbf8e
Show file tree
Hide file tree
Showing 17 changed files with 38 additions and 11 deletions.
34 changes: 27 additions & 7 deletions .classpath
Original file line number Diff line number Diff line change
@@ -1,12 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="financial/src/main/java/base"/>
<classpathentry kind="src" path="core/src/main/java/base"/>
<classpathentry kind="src" path="withholding/src/main/java"/>
<classpathentry kind="src" path="human_resource/src/main/java/base"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk8"/>
<classpathentry combineaccessrules="false" kind="src" path="/Withholding"/>
<classpathentry combineaccessrules="false" kind="src" path="/adempiereFork"/>
<classpathentry kind="lib" path="lib/jackcess-3.0.1.jar"/>
<classpathentry kind="output" path="bin"/>
<classpathentry kind="src" output="bin/main" path="core/src/main/java/base">
<attributes>
<attribute name="gradle_scope" value="main"/>
<attribute name="gradle_used_by_scope" value="main,test"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="bin/main" path="financial/src/main/java/base">
<attributes>
<attribute name="gradle_scope" value="main"/>
<attribute name="gradle_used_by_scope" value="main,test"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="bin/main" path="withholding/src/main/java/base">
<attributes>
<attribute name="gradle_scope" value="main"/>
<attribute name="gradle_used_by_scope" value="main,test"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="bin/main" path="human_resource/src/main/java/base">
<attributes>
<attribute name="gradle_scope" value="main"/>
<attribute name="gradle_used_by_scope" value="main,test"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
<classpathentry kind="output" path="bin/default"/>
</classpath>
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ out/
target/
/bin/
/.gradle/
/build/
6 changes: 6 additions & 0 deletions .project
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,14 @@
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
</natures>
</projectDescription>
2 changes: 2 additions & 0 deletions .settings/org.eclipse.buildship.core.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
connection.project.dir=
eclipse.preferences.version=1
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repositories {
sourceSets {
main {
java {
srcDirs = ['core', 'financial', 'withholding', 'human_resource']
srcDirs = ['core/src/main/java/base', 'financial/src/main/java/base', 'withholding/src/main/java/base', 'human_resource/src/main/java/base']
}
}
}
Expand All @@ -22,6 +22,7 @@ dependencies {
implementation name: 'Withholding'
implementation name: 'HumanResourceAndPayroll'
implementation name: 'jackcess-3.0.1'
compile 'com.sun.jersey:jersey-client:1.19.4'
}

jar {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
import org.compiere.model.MDocType;
import org.compiere.model.MInvoice;
import org.compiere.model.MInvoiceLine;
import org.compiere.model.MPeriod;
import org.compiere.model.MProduct;
import org.compiere.model.Query;
import org.compiere.util.Env;
Expand Down Expand Up @@ -71,8 +70,6 @@ public APInvoiceISLR(MWHSetting setting) {
private static BigDecimal FACTOR = new BigDecimal(83.3334);
/**Currency Precision */
int curPrecision = 0 ;
/**Period*/
private MPeriod invoicePeriod = null;

@Override
public boolean isValid() {
Expand Down

0 comments on commit 26bbf8e

Please sign in to comment.