Skip to content

Commit

Permalink
#148 fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jul 28, 2023
1 parent a1a0244 commit 00b7c1f
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 30 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ target/
*.iml
.DS_Store
ajcore.*

*.log
32 changes: 3 additions & 29 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -316,33 +316,7 @@ software.
</goals>
<configuration>
<sassSourceDirectory>${basedir}/src/main/scss</sassSourceDirectory>
<destination>${project.build.directory}/css</destination>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.samaxes.maven</groupId>
<artifactId>minify-maven-plugin</artifactId>
<version>1.7.6</version>
<configuration>
<charset>UTF-8</charset>
<nosuffix>true</nosuffix>
<webappTargetDir>${project.build.outputDirectory}</webappTargetDir>
</configuration>
<executions>
<execution>
<id>minify-css</id>
<goals>
<goal>minify</goal>
</goals>
<configuration>
<webappSourceDir>${project.build.directory}</webappSourceDir>
<cssSourceDir>css</cssSourceDir>
<cssSourceIncludes>
<include>*.css</include>
</cssSourceIncludes>
<skipMerge>true</skipMerge>
<destination>${project.build.outputDirectory}/css</destination>
</configuration>
</execution>
</executions>
Expand All @@ -359,7 +333,7 @@ software.
<goal>xml</goal>
</goals>
<configuration>
<srcFolder>${basedir}/src/main/xsl</srcFolder>
<srcFolder>${basedir}/src/main/resources/xsl</srcFolder>
<targetFolder>${project.build.outputDirectory}/xsl</targetFolder>
<fileExt>
<ext>xsl</ext>
Expand Down Expand Up @@ -398,7 +372,7 @@ software.
<artifactItem>
<groupId>com.jcabi</groupId>
<artifactId>DynamoDBLocal</artifactId>
<version>2015-07-16</version>
<version>2023-05-26</version>
<type>zip</type>
<outputDirectory>${project.build.directory}/dynamodb-dist</outputDirectory>
<overWrite>false</overWrite>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions src/test/java/io/jare/tk/TkAppTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ public void rendersHomePageViaHttp() throws Exception {
new FtRemote(app).exec(
home -> {
new JdkRequest(home)
.header("Accept", "text/html")
.fetch()
.as(RestResponse.class)
.assertStatus(HttpURLConnection.HTTP_OK)
Expand Down

0 comments on commit 00b7c1f

Please sign in to comment.