Skip to content

Commit 66d5f61

Browse files
committed
Adding solution
1 parent cfcdb58 commit 66d5f61

File tree

1 file changed

+78
-0
lines changed

1 file changed

+78
-0
lines changed

pom.xml

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,83 @@
5858
</executions>
5959
</plugin>
6060
</plugins>
61+
<pluginManagement>
62+
<plugins>
63+
<plugin>
64+
<groupId>com.gradle</groupId>
65+
<artifactId>develocity-maven-extension</artifactId>
66+
<configuration>
67+
<develocity>
68+
<plugins>
69+
<plugin>
70+
<artifactId>exec-maven-plugin</artifactId>
71+
<inputs>
72+
<fileSets>
73+
<fileSet>
74+
<name>name-txt</name>
75+
<paths>
76+
<path>name.txt</path>
77+
</paths>
78+
</fileSet>
79+
</fileSets>
80+
81+
<properties>
82+
<property><name>addOutputToClasspath</name></property>
83+
<property><name>addResourcesToClasspath</name></property>
84+
<property><name>arguments</name></property>
85+
<property><name>async</name></property>
86+
<property><name>asyncDestroyOnShutdown</name></property>
87+
<property><name>classpathScope</name></property>
88+
<property><name>commandlineArgs</name></property>
89+
<property><name>environmentScript</name></property>
90+
<property><name>environmentVariables</name></property>
91+
<property><name>executable</name></property>
92+
<property><name>executableDependency</name></property>
93+
<property><name>forceJava</name></property>
94+
<property><name>inheritIo</name></property>
95+
<property><name>longClasspath</name></property>
96+
<property><name>longModulepath</name></property>
97+
<property><name>outputFile</name></property>
98+
<property><name>quietLogs</name></property>
99+
<property><name>sourceRoot</name></property>
100+
<property><name>successCodes</name></property>
101+
<property><name>testSourceRoot</name></property>
102+
<property><name>timeout</name></property>
103+
<property><name>toolchain</name></property>
104+
<property><name>useMavenLogger</name></property>
105+
</properties>
106+
107+
<ignoredProperties>
108+
<ignore>workingDirectory</ignore>
109+
<ignore>buildDirectory</ignore>
110+
<ignore>basedir</ignore>
111+
112+
<ignore>project</ignore>
113+
<ignore>pluginDependencies</ignore>
114+
<ignore>session</ignore>
115+
</ignoredProperties>
116+
117+
</inputs>
118+
<outputs>
119+
<cacheableBecause>CPU intensive operation</cacheableBecause>
120+
<files>
121+
<file>
122+
<name>hello-txt</name>
123+
<path>${project.build.directory}/hello.txt</path>
124+
</file>
125+
</files>
126+
</outputs>
127+
128+
<skipIfTrue>
129+
<property>skip</property>
130+
</skipIfTrue>
131+
132+
</plugin>
133+
</plugins>
134+
</develocity>
135+
</configuration>
136+
</plugin>
137+
</plugins>
138+
</pluginManagement>
61139
</build>
62140
</project>

0 commit comments

Comments
 (0)