Skip to content

Commit ddd02d2

Browse files
shaileshmishrashaileshmishra
authored andcommitted
added includeEmbeddedItems in Entry and Query
added support for contentstack-utils package
1 parent 919fbfb commit ddd02d2

File tree

1 file changed

+9
-22
lines changed

1 file changed

+9
-22
lines changed

pom.xml

Lines changed: 9 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -82,17 +82,26 @@
8282

8383

8484
<dependencies>
85+
86+
<dependency>
87+
<groupId>com.contentstack.sdk</groupId>
88+
<artifactId>utils</artifactId>
89+
<version>1.0.0</version>
90+
</dependency>
91+
8592
<dependency>
8693
<groupId>io.github.cdimascio</groupId>
8794
<artifactId>java-dotenv</artifactId>
8895
<version>5.2.2</version>
8996
</dependency>
97+
9098
<dependency>
9199
<groupId>junit</groupId>
92100
<artifactId>junit</artifactId>
93101
<version>4.13.1</version>
94102
<scope>test</scope>
95103
</dependency>
104+
96105
<dependency>
97106
<groupId>org.json</groupId>
98107
<artifactId>json</artifactId>
@@ -116,7 +125,6 @@
116125

117126
<build>
118127
<plugins>
119-
120128
<!--
121129
# Run tests and generate .xml reports
122130
mvn test
@@ -126,7 +134,6 @@
126134
# time-consuming stuff
127135
mvn surefire-report:report site -DgenerateReports=false
128136
-->
129-
130137
<plugin>
131138
<groupId>org.apache.maven.plugins</groupId>
132139
<artifactId>maven-surefire-report-plugin</artifactId>
@@ -140,11 +147,6 @@
140147
</execution>
141148
</executions>
142149
</plugin>
143-
144-
<!--
145-
The Source Plugin creates a jar archive of the source files of
146-
the current project. The jar file is, by default, created in the project's target directory.
147-
-->
148150
<plugin>
149151
<groupId>org.apache.maven.plugins</groupId>
150152
<artifactId>maven-source-plugin</artifactId>
@@ -158,8 +160,6 @@
158160
</execution>
159161
</executions>
160162
</plugin>
161-
162-
<!--The Javadoc Plugin uses the Javadoc tool to generate javadocs for the specified project-->
163163
<plugin>
164164
<groupId>org.apache.maven.plugins</groupId>
165165
<artifactId>maven-javadoc-plugin</artifactId>
@@ -184,11 +184,6 @@
184184
</execution>
185185
</executions>
186186
</plugin>
187-
188-
<!--
189-
The Site Plugin is used to generate a site for the project.
190-
The generated site also includes the project's reports that were configured in the POM.
191-
-->
192187
<plugin>
193188
<groupId>org.apache.maven.plugins</groupId>
194189
<artifactId>maven-site-plugin</artifactId>
@@ -214,7 +209,6 @@
214209
</execution>
215210
</executions>
216211
</plugin>
217-
218212
<!--
219213
Sometimes when you may need to compile a certain project to a different
220214
version than what you are currently using. The javac can accept such command
@@ -232,10 +226,7 @@
232226
<showWarnings>true</showWarnings>
233227
<showDeprecation>true</showDeprecation>
234228
</configuration>
235-
236229
</plugin>
237-
238-
<!--Provides support to access staging functionality in a remote Nexus Professional server.-->
239230
<plugin>
240231
<groupId>org.sonatype.plugins</groupId>
241232
<artifactId>nexus-staging-maven-plugin</artifactId>
@@ -247,7 +238,6 @@
247238
<autoReleaseAfterClose>true</autoReleaseAfterClose>
248239
</configuration>
249240
</plugin>
250-
251241
<!--
252242
This plugin is used to release a project with Maven, saving a lot of repetitive, manual work.
253243
Releasing a project is made in two steps: prepare and perform.
@@ -263,8 +253,6 @@
263253
<goals>deploy</goals>
264254
</configuration>
265255
</plugin>
266-
267-
268256
<plugin>
269257
<groupId>org.jacoco</groupId>
270258
<artifactId>jacoco-maven-plugin</artifactId>
@@ -281,7 +269,6 @@
281269
<goals>
282270
<goal>report</goal>
283271
</goals>
284-
285272
</execution>
286273
</executions>
287274
</plugin>

0 commit comments

Comments
 (0)