Hi,
You could use this maven goal to upload the destination file you create locally.
<build> <plugins> <plugin> <groupId>com.sap.cloud</groupId> <artifactId>neo-java-web-maven-plugin</artifactId> .... <executions> <execution> <id>put-destination-ABC</id> <phase>process-classes</phase> <goals> <goal>put-destination</goal> </goals> <configuration> <localpath>${project.build.directory}/destinations/abc</localpath> </configuration> </execution> ....
Regards,
Ivan
Add comment