github-actions[bot] opened a new issue, #450:
URL: https://github.com/apache/incubator-wayang/issues/450

   watch if is it possible to put it with parameters
   
   
https://github.com/apache/incubator-wayang/blob/c25c6561bf786d76d0dc717b28cf15885c269232/wayang-commons/wayang-serializable/pom.xml#L91
   
   ```xml
   
   <?xml version="1.0" encoding="UTF-8"?>
   <!--
     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.
     -->
   <project xmlns="http://maven.apache.org/POM/4.0.0";
            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
            xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
       <parent>
           <artifactId>wayang-commons</artifactId>
           <groupId>org.apache.wayang</groupId>
           <version>0.7.1</version>
       </parent>
       <modelVersion>4.0.0</modelVersion>
   
       <artifactId>wayang-serializable</artifactId>
       <version>0.7.1</version>
       <packaging>jar</packaging>
   
       <properties>
           <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
           <protobuf.version>3.15.2</protobuf.version>
           <protoc.version>3.15.2</protoc.version>
           <maven.compiler.source>1.8</maven.compiler.source>
           <maven.compiler.target>1.8</maven.compiler.target>
       </properties>
   
       <dependencyManagement>
           <dependencies>
               <dependency>
                   <groupId>org.apache.wayang</groupId>
                   <artifactId>wayang-commons</artifactId>
                   <version>0.7.1</version>
                   <type>pom</type>
                   <scope>import</scope>
               </dependency>
           </dependencies>
       </dependencyManagement>
   
       <dependencies>
           <dependency>
               <groupId>com.google.protobuf</groupId>
               <artifactId>protobuf-java</artifactId>
               <version>${protobuf.version}</version>
           </dependency>
       </dependencies>
       <build>
           <extensions>
               <extension>
                   <groupId>kr.motd.maven</groupId>
                   <artifactId>os-maven-plugin</artifactId>
                   <version>1.6.2</version>
               </extension>
           </extensions>
           <plugins>
               <plugin>
                   <groupId>org.xolstice.maven.plugins</groupId>
                   <artifactId>protobuf-maven-plugin</artifactId>
                   <version>0.5.1</version>
                   <configuration>
                       
<protocArtifact>com.google.protobuf:protoc:${protoc.version}:exe:${os.detected.classifier}</protocArtifact>
                   </configuration>
                   <executions>
                       <execution>
                           <goals>
                               <goal>compile</goal>
                               <goal>compile-python</goal>
                               <goal>test-compile</goal>
                           </goals>
                       </execution>
                   </executions>
               </plugin>
           </plugins>
           <!-- Copy all the protobuf code to the folder PyWayang -->
           <resources>
               <resource>
                   <!-- TODO: watch if is it possible to put it with parameters 
-->
                   
<directory>${basedir}/target/generated-sources/protobuf/python</directory><!-- 
from -->
                   
<targetPath>${basedir}/../../pywayang/protobuf</targetPath><!-- to -->
                   <includes><!-- Only python files -->
                       <include>**/*.py</include>
                   </includes>
               </resource>
           </resources>
       </build>
   
   </project>
   
   ```
   
   6268890184ef9fb56ec2e471bd7225dadb36fff3


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to