forked from eclipse-leshan/leshan
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactoring add oscore module - no file content changes [dont build]
This aims to implement : eclipse-leshan#1295 Refactoring was done in 2 commits to try to keep git history : https://stackoverflow.com/questions/2314652/is-it-possible-to-move-rename-files-in-git-and-maintain-their-history This commit doesn't build.
- Loading branch information
1 parent
bc90314
commit d5c81f1
Showing
22 changed files
with
403 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright (c) 2013-2015 Sierra Wireless and others. | ||
All rights reserved. This program and the accompanying materials | ||
are made available under the terms of the Eclipse Public License v2.0 | ||
and Eclipse Distribution License v1.0 which accompany this distribution. | ||
The Eclipse Public License is available at | ||
http://www.eclipse.org/legal/epl-v20.html | ||
and the Eclipse Distribution License is available at | ||
http://www.eclipse.org/org/documents/edl-v10.html. | ||
Contributors: | ||
Sierra Wireless - initial API and implementation | ||
--> | ||
<configuration> | ||
<!-- | ||
This file will only be used by maven by default. | ||
If you want to use it in your IDE, just : | ||
- use -Dlogback.configurationFile=logback-test-.xml argument | ||
or | ||
- put a logback-test.xml file in your classpath (it will be ignore by git) | ||
--> | ||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | ||
<encoder> | ||
<pattern>%d %p %C{1} [%t] %m%n</pattern> | ||
</encoder> | ||
</appender> | ||
|
||
<root level="ERROR"> | ||
<appender-ref ref="STDOUT" /> | ||
</root> | ||
</configuration> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright (c) 2013-2015 Sierra Wireless and others. | ||
All rights reserved. This program and the accompanying materials | ||
are made available under the terms of the Eclipse Public License v2.0 | ||
and Eclipse Distribution License v1.0 which accompany this distribution. | ||
The Eclipse Public License is available at | ||
http://www.eclipse.org/legal/epl-v20.html | ||
and the Eclipse Distribution License is available at | ||
http://www.eclipse.org/org/documents/edl-v10.html. | ||
Contributors: | ||
Sierra Wireless - initial API and implementation | ||
Bosch Software Innovations GmbH - OSGi support | ||
--> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>org.eclipse.leshan</groupId> | ||
<artifactId>lib-build-config</artifactId> | ||
<version>2.0.0-SNAPSHOT</version> | ||
<relativePath>../build-config/lib-build-config/pom.xml</relativePath> | ||
</parent> | ||
<artifactId>leshan-tl-cf-bsserver-coap-oscore</artifactId> | ||
<packaging>bundle</packaging> | ||
<name>leshan - transport - californium - bsserver - coap oscore</name> | ||
<description>A transport implementation for leshan bootstrap server based on Californium for CoAP protocol supporting OSCORE</description> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.eclipse.leshan</groupId> | ||
<artifactId>leshan-tl-cf-shared</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.leshan</groupId> | ||
<artifactId>leshan-lwm2m-bsserver</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.californium</groupId> | ||
<artifactId>californium-core</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.californium</groupId> | ||
<artifactId>scandium</artifactId> | ||
</dependency> | ||
|
||
<!-- test dependencies --> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-engine</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>ch.qos.logback</groupId> | ||
<artifactId>logback-classic</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<configuration> | ||
<!-- We need to launch each tests in its own JVM to be able to check number | ||
of active threads in LeshanBootstrapServerTest and LeshanServerTest --> | ||
<reuseForks>false</reuseForks> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright (c) 2013-2015 Sierra Wireless and others. | ||
All rights reserved. This program and the accompanying materials | ||
are made available under the terms of the Eclipse Public License v2.0 | ||
and Eclipse Distribution License v1.0 which accompany this distribution. | ||
The Eclipse Public License is available at | ||
http://www.eclipse.org/legal/epl-v20.html | ||
and the Eclipse Distribution License is available at | ||
http://www.eclipse.org/org/documents/edl-v10.html. | ||
Contributors: | ||
Sierra Wireless - initial API and implementation | ||
--> | ||
<configuration> | ||
<!-- | ||
This file will only be used by maven by default. | ||
If you want to use it in your IDE, just : | ||
- use -Dlogback.configurationFile=logback-test-.xml argument | ||
or | ||
- put a logback-test.xml file in your classpath (it will be ignore by git) | ||
--> | ||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | ||
<encoder> | ||
<pattern>%d %p %C{1} [%t] %m%n</pattern> | ||
</encoder> | ||
</appender> | ||
|
||
<root level="ERROR"> | ||
<appender-ref ref="STDOUT" /> | ||
</root> | ||
</configuration> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright (c) 2013-2014 Sierra Wireless and others. | ||
All rights reserved. This program and the accompanying materials | ||
are made available under the terms of the Eclipse Public License v2.0 | ||
and Eclipse Distribution License v1.0 which accompany this distribution. | ||
The Eclipse Public License is available at | ||
http://www.eclipse.org/legal/epl-v20.html | ||
and the Eclipse Distribution License is available at | ||
http://www.eclipse.org/org/documents/edl-v10.html. | ||
Contributors: | ||
Sierra Wireless - initial API and implementation | ||
Zebra Technologies - initial API and implementation | ||
Eurotech - initial API and implementation | ||
--> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>org.eclipse.leshan</groupId> | ||
<artifactId>lib-build-config</artifactId> | ||
<version>2.0.0-SNAPSHOT</version> | ||
<relativePath>../build-config/lib-build-config/pom.xml</relativePath> | ||
</parent> | ||
<artifactId>leshan-tl-cf-client-coap-oscore</artifactId> | ||
<packaging>bundle</packaging> | ||
<name>leshan - transport - californium - client - coap oscore</name> | ||
<description>A transport implementation for leshan client based on Californium for CoAP protocol supporting OSCORE</description> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.eclipse.leshan</groupId> | ||
<artifactId>leshan-tl-cf-shared</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.leshan</groupId> | ||
<artifactId>leshan-lwm2m-client</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.californium</groupId> | ||
<artifactId>californium-core</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.californium</groupId> | ||
<artifactId>scandium</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.californium</groupId> | ||
<artifactId>cf-oscore</artifactId> | ||
<version>${californium.version}</version> | ||
</dependency> | ||
</dependencies> | ||
</project> |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright (c) 2013-2015 Sierra Wireless and others. | ||
All rights reserved. This program and the accompanying materials | ||
are made available under the terms of the Eclipse Public License v2.0 | ||
and Eclipse Distribution License v1.0 which accompany this distribution. | ||
The Eclipse Public License is available at | ||
http://www.eclipse.org/legal/epl-v20.html | ||
and the Eclipse Distribution License is available at | ||
http://www.eclipse.org/org/documents/edl-v10.html. | ||
Contributors: | ||
Sierra Wireless - initial API and implementation | ||
--> | ||
<configuration> | ||
<!-- | ||
This file will only be used by maven by default. | ||
If you want to use it in your IDE, just : | ||
- use -Dlogback.configurationFile=logback-test-.xml argument | ||
or | ||
- put a logback-test.xml file in your classpath (it will be ignore by git) | ||
--> | ||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | ||
<encoder> | ||
<pattern>%d %p %C{1} [%t] %m%n</pattern> | ||
</encoder> | ||
</appender> | ||
|
||
<root level="ERROR"> | ||
<appender-ref ref="STDOUT" /> | ||
</root> | ||
</configuration> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright (c) 2013-2015 Sierra Wireless and others. | ||
All rights reserved. This program and the accompanying materials | ||
are made available under the terms of the Eclipse Public License v2.0 | ||
and Eclipse Distribution License v1.0 which accompany this distribution. | ||
The Eclipse Public License is available at | ||
http://www.eclipse.org/legal/epl-v20.html | ||
and the Eclipse Distribution License is available at | ||
http://www.eclipse.org/org/documents/edl-v10.html. | ||
Contributors: | ||
Sierra Wireless - initial API and implementation | ||
Bosch Software Innovations GmbH - OSGi support | ||
--> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>org.eclipse.leshan</groupId> | ||
<artifactId>lib-build-config</artifactId> | ||
<version>2.0.0-SNAPSHOT</version> | ||
<relativePath>../build-config/lib-build-config/pom.xml</relativePath> | ||
</parent> | ||
<artifactId>leshan-tl-cf-server-coap-oscore</artifactId> | ||
<packaging>bundle</packaging> | ||
<name>leshan - transport - californium - server - coap oscore</name> | ||
<description>A transport implementation for leshan server based on Californium for CoAP protocol supporting OSCORE</description> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.eclipse.leshan</groupId> | ||
<artifactId>leshan-tl-cf-shared</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.leshan</groupId> | ||
<artifactId>leshan-lwm2m-server</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.californium</groupId> | ||
<artifactId>californium-core</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.californium</groupId> | ||
<artifactId>scandium</artifactId> | ||
</dependency> | ||
|
||
<!-- test dependencies --> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-engine</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>ch.qos.logback</groupId> | ||
<artifactId>logback-classic</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<configuration> | ||
<!-- We need to launch each tests in its own JVM to be able to check number | ||
of active threads in LeshanBootstrapServerTest and LeshanServerTest --> | ||
<reuseForks>false</reuseForks> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright (c) 2013-2015 Sierra Wireless and others. | ||
All rights reserved. This program and the accompanying materials | ||
are made available under the terms of the Eclipse Public License v2.0 | ||
and Eclipse Distribution License v1.0 which accompany this distribution. | ||
The Eclipse Public License is available at | ||
http://www.eclipse.org/legal/epl-v20.html | ||
and the Eclipse Distribution License is available at | ||
http://www.eclipse.org/org/documents/edl-v10.html. | ||
Contributors: | ||
Sierra Wireless - initial API and implementation | ||
--> | ||
<configuration> | ||
<!-- | ||
This file will only be used by maven by default. | ||
If you want to use it in your IDE, just : | ||
- use -Dlogback.configurationFile=logback-test-.xml argument | ||
or | ||
- put a logback-test.xml file in your classpath (it will be ignore by git) | ||
--> | ||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | ||
<encoder> | ||
<pattern>%d %p %C{1} [%t] %m%n</pattern> | ||
</encoder> | ||
</appender> | ||
|
||
<root level="ERROR"> | ||
<appender-ref ref="STDOUT" /> | ||
</root> | ||
</configuration> | ||
|
Oops, something went wrong.