You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by cd...@apache.org on 2021/03/13 10:27:50 UTC

[plc4x] branch develop updated: - Removed the setting to re-download the xml-masterdata.xml on every build as in case of multiple builds a day you tend to get banned.

This is an automated email from the ASF dual-hosted git repository.

cdutz pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git


The following commit(s) were added to refs/heads/develop by this push:
     new 74609ac  - Removed the setting to re-download the xml-masterdata.xml on every build as in case of multiple builds a day you tend to get banned.
74609ac is described below

commit 74609ac517f229cad974b8025a4bbb7272704be2
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Sat Mar 13 11:27:30 2021 +0100

    - Removed the setting to re-download the xml-masterdata.xml on every build as in case of multiple builds a day you tend to get banned.
---
 protocols/knxnetip/pom.xml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/protocols/knxnetip/pom.xml b/protocols/knxnetip/pom.xml
index e94ac45..c09e7b8 100644
--- a/protocols/knxnetip/pom.xml
+++ b/protocols/knxnetip/pom.xml
@@ -35,6 +35,7 @@
   <build>
     <plugins>
       <!-- Fetch the master-data which will be used to translate manufacturer ids to readable names -->
+      <!-- TODO: Replace this with a groovy script that checks if the local file is from the current date and only downloads once a day and uses the cached version in case of no internet connection -->
       <plugin>
         <groupId>com.googlecode.maven-download-plugin</groupId>
         <artifactId>download-maven-plugin</artifactId>
@@ -50,8 +51,6 @@
               <unpack>false</unpack>
               <outputDirectory>${project.build.directory}/downloads</outputDirectory>
               <outputFileName>knx-master-data.xml</outputFileName>
-              <!-- To ensure this is updated regularly -->
-              <overwrite>true</overwrite>
             </configuration>
           </execution>
         </executions>