Skip to content

Commit 4d6985d

Browse files
working on #228, working on #225, working on #42, working on #230
1 parent b67751f commit 4d6985d

File tree

5 files changed

+10
-15
lines changed

5 files changed

+10
-15
lines changed

pom.xml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@
2121
<name>Thomas Woehlke</name>
2222
<url>https://twitter.com/ThomasWoehlke</url>
2323
</organization>
24+
2425
<inceptionYear>2017</inceptionYear>
26+
2527
<scm>
2628
<url>https://github.com/phasenraum2010/twitterwall2.git</url>
2729
<connection>scm:git:https://github.com/phasenraum2010/twitterwall2.git</connection>
@@ -33,23 +35,26 @@
3335
<system>GitHub</system>
3436
<url>https://github.com/phasenraum2010/twitterwall2/issues</url>
3537
</issueManagement>
38+
3639
<distributionManagement>
3740
<site>
3841
<id>simpleworklist.shadowfax.fritz.box</id>
39-
<url>file://${project.basedir}/docs-site-deployed</url>
42+
<url>file://${project.basedir}/target/site-deployed</url>
4043
</site>
4144
</distributionManagement>
45+
4246
<developers>
4347
<developer>
4448
<name>Thomas Wöhlke</name>
4549
<email>thomas@woehlke.org</email>
4650
<url>https://github.com/phasenraum2010</url>
4751
</developer>
4852
</developers>
53+
4954
<licenses>
5055
<license>
51-
<name>GNU General Public License v2.0</name>
52-
<url>http://www.gnu.org/licenses/old-licenses/gpl-2.0</url>
56+
<name>Apache License, Version 2.0</name>
57+
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
5358
</license>
5459
</licenses>
5560

src/main/resources/public/css/my.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* my own CSS. (C) 2017 Thomas Woehlke */
1+
/* my own CSS. (c) 2017 Thomas Woehlke */
22

33
@media all {
44

src/main/resources/public/js/my.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/* my own JavaScript. (C) 2017 Thomas Woehlke */
1+
/* my own JavaScript. (c) 2017 Thomas Woehlke */

test/db-count.sql

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,10 @@ select count(*) from tweet_media;
99
select count(*) from tweet_hashtag;
1010
select count(*) from tweet_url;
1111
select count(*) from url_cache;
12-
select count(*) from url_indices;
1312
select count(*) from url;
14-
select count(*) from tickersymbol_indices;
1513
select count(*) from tickersymbol;
16-
select count(*) from mention_indices;
1714
select count(*) from mention;
18-
select count(*) from media_indices;
1915
select count(*) from media;
20-
select count(*) from hashtag_indices;
2116
select count(*) from hashtag;
2217
select count(*) from tweet;
2318
select count(*) from userprofile;

test/db-reset.sql

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,10 @@ delete from tweet_media;
99
delete from tweet_hashtag;
1010
delete from tweet_url;
1111
delete from url_cache;
12-
delete from url_indices;
1312
delete from url;
14-
delete from tickersymbol_indices;
1513
delete from tickersymbol;
16-
delete from mention_indices;
1714
delete from mention;
18-
delete from media_indices;
1915
delete from media;
20-
delete from hashtag_indices;
2116
delete from hashtag;
2217
delete from tweet;
2318
delete from userprofile;

0 commit comments

Comments
 (0)