Skip to content

Commit 72d4e79

Browse files
committed
pull properties from ns-common
1 parent 1e7d238 commit 72d4e79

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

ns-web-api/pom.xml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,4 +153,34 @@
153153
<artifactId>swagger-ui</artifactId>
154154
</dependency>
155155
</dependencies>
156+
157+
<build>
158+
<plugins>
159+
<plugin>
160+
<groupId>org.apache.maven.plugins</groupId>
161+
<artifactId>maven-dependency-plugin</artifactId>
162+
<version>3.7.0</version>
163+
<executions>
164+
<execution>
165+
<id>unpack-shared-resources</id>
166+
<goals>
167+
<goal>unpack</goal>
168+
</goals>
169+
<phase>generate-resources</phase>
170+
<configuration>
171+
<artifactItems>
172+
<artifactItem>
173+
<groupId>org.dataone.notification-service</groupId>
174+
<artifactId>ns-common</artifactId>
175+
<version>${project.version}</version>
176+
<outputDirectory>${project.build.outputDirectory}</outputDirectory>
177+
<includes>properties.yaml</includes>
178+
</artifactItem>
179+
</artifactItems>
180+
</configuration>
181+
</execution>
182+
</executions>
183+
</plugin>
184+
</plugins>
185+
</build>
156186
</project>

0 commit comments

Comments
 (0)