Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
Arnaud-Nauwynck committed May 12, 2020
1 parent 7d71b51 commit 490da35
Show file tree
Hide file tree
Showing 46 changed files with 50 additions and 2 deletions.
33 changes: 33 additions & 0 deletions http-flipbook-to-pdf/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@

# Running Flipbook2Pdf


Compile it:

```
mvn package
```

Configure your email+passwd in your home configuration file "linuxmag.properties":
(on linux: in your $HOME: "/home/${user}/linuxmag.properties", on windows in "c:\\users\\${user}\\linuxmag.properties" )

```
email=<<youremail>>
passwd=<<yourpassword>>
```

Run it:

- either from your IDE (Eclipse, IntelliJ): simply run the main class fr.an.tools.flipbook2pdf.Flipbook2PdfMain

- or from command line

```
java -jar target/flipbook2pdf-0.0.1-SNAPSHOT.jar
```

By default, it will download all your flipbooks... and cache result in local directory "out"

Read your pdf offline: open local directory "out"

19 changes: 17 additions & 2 deletions http-flipbook-to-pdf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,15 +78,30 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>


<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.2.7.RELEASE</version>
<executions>
<execution>
<id>repackage</id>
<phase>package</phase>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>


</project>

0 comments on commit 490da35

Please sign in to comment.