This is an automated email from the ASF dual-hosted git repository.
jleroux pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git The following commit(s) were added to refs/heads/trunk by this push: new 2603736 Fixed: Adds missing license headers 2603736 is described below commit 260373673d61fd34850f4285a3a7c86e99cfb3a3 Author: Jacques Le Roux <[hidden email]> AuthorDate: Thu Jun 25 09:18:40 2020 +0200 Fixed: Adds missing license headers Also renames gradle.yml into gradle.yaml --- .asf.yaml | 15 ++++++++ .github/workflows/gradle.yaml | 42 ++++++++++++++++++++++ .github/workflows/gradle.yml | 26 -------------- .../ofbiz/accounting/AutoInvoiceTests.groovy | 25 +++++++++++-- 4 files changed, 79 insertions(+), 29 deletions(-) diff --git a/.asf.yaml b/.asf.yaml index ac31700..15cbcae 100644 --- a/.asf.yaml +++ b/.asf.yaml @@ -1,3 +1,18 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF 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. + github: description: "Apache OFBiz is an open source product for the automation of enterprise processes. It includes framework components and business applications for ERP, CRM, E-Business/E-Commerce, Supply Chain Management and Manufacturing Resource Planning. OFBiz provides a foundation and starting point for reliable, secure and scalable enterprise solutions." homepage: https://ofbiz.apache.org/ diff --git a/.github/workflows/gradle.yaml b/.github/workflows/gradle.yaml new file mode 100644 index 0000000..18d5c18 --- /dev/null +++ b/.github/workflows/gradle.yaml @@ -0,0 +1,42 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF 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. + + +# This workflow will check style in OFBiz with its plugins +# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle + +name: Java CI with Gradle + +on: + push: + branches: [ trunk ] + pull_request: + branches: [ trunk ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Build with Gradle + run: ./gradlew pullAllPluginsSource check diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml deleted file mode 100644 index f60bbe5..0000000 --- a/.github/workflows/gradle.yml +++ /dev/null @@ -1,26 +0,0 @@ -# This workflow will check style in OFBiz with its plugins -# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle - -name: Java CI with Gradle - -on: - push: - branches: [ trunk ] - pull_request: - branches: [ trunk ] - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - name: Set up JDK 1.8 - uses: actions/setup-java@v1 - with: - java-version: 1.8 - - name: Grant execute permission for gradlew - run: chmod +x gradlew - - name: Build with Gradle - run: ./gradlew pullAllPluginsSource check diff --git a/applications/accounting/src/main/groovy/org/apache/ofbiz/accounting/AutoInvoiceTests.groovy b/applications/accounting/src/main/groovy/org/apache/ofbiz/accounting/AutoInvoiceTests.groovy index bf62549..a3291fd 100644 --- a/applications/accounting/src/main/groovy/org/apache/ofbiz/accounting/AutoInvoiceTests.groovy +++ b/applications/accounting/src/main/groovy/org/apache/ofbiz/accounting/AutoInvoiceTests.groovy @@ -1,9 +1,28 @@ -package org.apache.ofbiz.accounting; +/******************************************************************************* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF 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. + *******************************************************************************/ + + package org.apache.ofbiz.accounting; +import org.apache.ofbiz.accounting.invoice.InvoiceWorker import org.apache.ofbiz.entity.GenericValue import org.apache.ofbiz.entity.util.EntityQuery import org.apache.ofbiz.service.testtools.OFBizTestCase -import org.apache.ofbiz.accounting.invoice.InvoiceWorker class AutoInvoiceTests extends OFBizTestCase { public AutoInvoiceTests(String name) { @@ -89,4 +108,4 @@ class AutoInvoiceTests extends OFBizTestCase { BigDecimal invoiceTotal = InvoiceWorker.getInvoiceTotal(invoice) assert invoiceTotal == amount } -} \ No newline at end of file +} |
Free forum by Nabble | Edit this page |