We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9ce7d3 commit b13a0a9Copy full SHA for b13a0a9
1 file changed
google-cloud-firestore/pom.xml
@@ -109,6 +109,25 @@
109
</resource>
110
</resources>
111
<plugins>
112
+ <plugin>
113
+ <artifactId>maven-antrun-plugin</artifactId>
114
+ <version>1.4</version>
115
+ <executions>
116
+ <execution>
117
+ <phase>process-resources</phase>
118
+ <configuration>
119
+ <tasks>
120
+ <copy file="${project.build.outputDirectory}/project.properties"
121
+ toFile="${project.build.outputDirectory}/com/google/cloud/firestore/project.properties"
122
+ overwrite="true" />
123
+ </tasks>
124
+ </configuration>
125
+ <goals>
126
+ <goal>run</goal>
127
+ </goals>
128
+ </execution>
129
+ </executions>
130
+ </plugin>
131
<plugin>
132
<groupId>org.codehaus.mojo</groupId>
133
<artifactId>properties-maven-plugin</artifactId>
0 commit comments