Skip to content

Commit 4cec19c

Browse files
committed
redesign to lib, examples moved to separate repo
1 parent ba18328 commit 4cec19c

49 files changed

Lines changed: 633 additions & 3454 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

build.gradle

Lines changed: 39 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,48 @@
11
plugins {
2+
id 'maven'
3+
id 'java-library'
24
id "io.freefair.lombok" version "4.1.6"
3-
id "io.spring.dependency-management" version "1.0.8.RELEASE"
45
}
56

6-
subprojects {
7-
group = 'com.github.serezhka'
8-
version = '0.0.1-SNAPSHOT'
7+
group 'com.github.serezhka'
8+
version '1.0.0'
99

10-
apply plugin: 'java'
11-
apply plugin: 'io.spring.dependency-management'
12-
apply plugin: 'java-library'
10+
sourceCompatibility = JavaVersion.VERSION_11
11+
targetCompatibility = JavaVersion.VERSION_11
1312

14-
sourceCompatibility = JavaVersion.VERSION_11
15-
targetCompatibility = JavaVersion.VERSION_11
16-
17-
repositories {
18-
jcenter()
19-
mavenCentral()
20-
maven {
21-
url "https://jitpack.io"
22-
}
13+
repositories {
14+
jcenter()
15+
mavenCentral()
16+
maven {
17+
url "https://jitpack.io"
2318
}
19+
}
2420

25-
dependencyManagement {
26-
imports {
27-
mavenBom("org.springframework.boot:spring-boot-dependencies:2.1.9.RELEASE")
28-
}
29-
}
21+
dependencies {
22+
implementation "io.netty:netty-all:4.1.42.Final"
23+
implementation "com.github.serezhka:java-airplay-lib:1.0.0"
24+
implementation "org.slf4j:slf4j-api:1.7.30"
25+
26+
27+
testImplementation "org.junit.jupiter:junit-jupiter-api:5.4.2"
28+
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.4.2"
29+
}
30+
31+
test {
32+
useJUnitPlatform()
33+
}
34+
35+
task fatJar(type: Jar) {
36+
archiveClassifier.set('all')
37+
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
38+
with jar
3039
}
40+
41+
task jarSources(type: Jar) {
42+
classifier = 'sources'
43+
from sourceSets.main.allSource
44+
}
45+
46+
artifacts {
47+
archives jarSources
48+
}

h264-dump/build.gradle

Lines changed: 0 additions & 10 deletions
This file was deleted.

h264-dump/src/main/java/com/github/serezhka/jap2s/h264dump/H264Dump.java

Lines changed: 0 additions & 31 deletions
This file was deleted.

h264-dump/src/main/java/com/github/serezhka/jap2s/h264dump/H264DumpApp.java

Lines changed: 0 additions & 55 deletions
This file was deleted.

h264-dump/src/main/java/com/github/serezhka/jap2s/h264dump/H264DumpConfig.java

Lines changed: 0 additions & 32 deletions
This file was deleted.

h264-dump/src/main/resources/application.properties

Lines changed: 0 additions & 5 deletions
This file was deleted.

h264-dump/src/main/resources/h264-dump.properties

Lines changed: 0 additions & 4 deletions
This file was deleted.

index-h264.html

Lines changed: 0 additions & 41 deletions
This file was deleted.

jitpack.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
jdk:
2+
- openjdk11

jmuxer-player/build.gradle

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)