-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update sources after nightly build check
- Loading branch information
1 parent
a21d480
commit aff0fb5
Showing
143 changed files
with
33,041 additions
and
1 deletion.
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
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
{"PackageId":"Newtonsoft.Json","PackageVersion":"9.0.1.0","PreRelease":false,"ReflectorEngineVersion":"1.8.6.0","NetFrameworkDone":false,"Net5Done":false,"Net6Done":true} | ||
{"PackageId":"Newtonsoft.Json","PackageVersion":"9.0.1.0","PreRelease":false,"ReflectorEngineVersion":"1.8.6.0","NetFrameworkDone":true,"Net5Done":false,"Net6Done":true} |
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,220 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<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> | ||
|
||
<groupId>com.masesgroup</groupId> | ||
<artifactId>newtonsoft.json_net461</artifactId> | ||
<name>newtonsoft.json</name> | ||
<description>The original version of the package, and description below, is available at the following address: https://www.nuget.org/packages/newtonsoft.json/9.0.1.0 | ||
Json.NET is a popular high-performance JSON framework for .NET | ||
</description> | ||
<url>https://github.com/masesgroup/NuReflector</url> | ||
<version>9.0.1.0-SNAPSHOT</version> | ||
|
||
<licenses> | ||
<license> | ||
<name>MIT License</name> | ||
<url>http://www.opensource.org/licenses/mit-license.php</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
<issueManagement> | ||
<url>https://github.com/masesgroup/NuReflector/issues</url> | ||
<system>GitHub Issues</system> | ||
</issueManagement> | ||
<scm> | ||
<url>https://github.com/masesgroup/NuReflector</url> | ||
<connection>scm:git:git://github.com/masesgroup/NuReflector.git</connection> | ||
<developerConnection>scm:git:[email protected]:masesgroup/NuReflector.git</developerConnection> | ||
</scm> | ||
<developers> | ||
<developer> | ||
<email>[email protected]</email> | ||
<name>MASES Group</name> | ||
<url>https://github.com/masesgroup</url> | ||
<id>masesgroup</id> | ||
</developer> | ||
</developers> | ||
<properties> | ||
<maven.compiler.source>8</maven.compiler.source> | ||
<maven.compiler.target>8</maven.compiler.target> | ||
<classpathfile>${basedir}/classpathfile.classpath</classpathfile> | ||
</properties> | ||
<distributionManagement> | ||
<snapshotRepository> | ||
<id>ossrh</id> | ||
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> | ||
</snapshotRepository> | ||
<repository> | ||
<id>ossrh</id> | ||
<name>Central Repository OSSRH</name> | ||
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> | ||
</repository> | ||
</distributionManagement> | ||
<build> | ||
<plugins> | ||
<!-- from https://stackoverflow.com/questions/3410548/maven-add-a-folder-or-jar-file-into-current-classpath --> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-dependency-plugin</artifactId> | ||
<version>2.9</version> | ||
<executions> | ||
<execution> | ||
<id>build-classpath</id> | ||
<phase>generate-sources</phase> | ||
<goals> | ||
<goal>build-classpath</goal> | ||
</goals> | ||
<configuration> | ||
<outputFile>${classpathfile}</outputFile> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.gmaven</groupId> | ||
<artifactId>gmaven-plugin</artifactId> | ||
<version>1.4</version> | ||
<executions> | ||
<execution> | ||
<phase>generate-resources</phase> | ||
<goals> | ||
<goal>execute</goal> | ||
</goals> | ||
<configuration> | ||
<source> | ||
def file = new File(project.properties.classpathfile) | ||
project.properties.originalClassPath = file.getText() | ||
</source> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<!-- end from stackoverflow --> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.8.1</version> | ||
<configuration> | ||
<compilerArgs> | ||
<arg>-cp</arg> | ||
<arg>${originalClassPath}${path.separator}${basedir}/../../../bin/net461/JCOBridge.jar</arg> | ||
</compilerArgs> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.8.1</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>build-helper-maven-plugin</artifactId> | ||
<version>3.2.0</version> | ||
<executions> | ||
<execution> | ||
<phase>validate</phase> | ||
<goals> | ||
<goal>add-source</goal> | ||
</goals> | ||
<configuration> | ||
<sources> | ||
<source>./net461/jcoreflectorgenerated</source> | ||
<source>./net461/newtonsoft.json_version_9.0.0.0_culture_neutral_publickeytoken_30ad4fe6b2a6aeed</source> | ||
|
||
</sources> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>2.2.1</version> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
<goals> | ||
<goal>jar-no-fork</goal> | ||
</goals> | ||
<configuration> | ||
<excludes> | ||
<exclude>**/target/</exclude> | ||
<exclude>**/*.xml</exclude> | ||
<exclude>**/*.zip</exclude> | ||
</excludes> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>2.9.1</version> | ||
<configuration> | ||
<links> | ||
<link>https://www.jcobridge.com/api-java</link> | ||
</links> | ||
<quiet>true</quiet> | ||
<source>8</source> | ||
<additionalDependencies> | ||
<additionalDependency> | ||
<groupId>JCOBridge</groupId> | ||
<artifactId>JCOBridge</artifactId> | ||
<version>2.4.6</version> | ||
</additionalDependency> | ||
</additionalDependencies> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<version>1.5</version> | ||
<configuration> | ||
<gpgArguments> | ||
<arg>--pinentry-mode</arg> | ||
<arg>loopback</arg> | ||
</gpgArguments> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>sign-artifacts</id> | ||
<phase>verify</phase> | ||
<goals> | ||
<goal>sign</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.sonatype.plugins</groupId> | ||
<artifactId>nexus-staging-maven-plugin</artifactId> | ||
<version>1.6.7</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<serverId>ossrh</serverId> | ||
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> | ||
<autoReleaseAfterClose>true</autoReleaseAfterClose> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.masesgroup</groupId> | ||
<artifactId>jcoreflector_net461</artifactId> | ||
<version>1.8.6.0</version> | ||
</dependency> | ||
|
||
</dependencies> | ||
</project> |
77 changes: 77 additions & 0 deletions
77
...c/net461/jcoreflectorgenerated/org/mases/jcobridge/netreflection/JCOReflectorOptions.java
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,77 @@ | ||
/* | ||
* MIT License | ||
* | ||
* Copyright (c) 2022 MASES s.r.l. | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all | ||
* copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
* SOFTWARE. | ||
*/ | ||
|
||
/************************************************************************************** | ||
* <auto-generated> | ||
* This code was generated from a template using JCOReflector | ||
* | ||
* Manual changes to this file may cause unexpected behavior in your application. | ||
* Manual changes to this file will be overwritten if the code is regenerated. | ||
* </auto-generated> | ||
*************************************************************************************/ | ||
|
||
package org.mases.jcobridge.netreflection; | ||
|
||
/** | ||
* The class which lists the options enabled in the class generation. | ||
* | ||
*/ | ||
public class JCOReflectorOptions { | ||
/** | ||
* AssemblyNames: "C:/Users/runneradmin/AppData/Local/Temp/Newtonsoft.Json/lib/net45/Newtonsoft.Json.dll" | ||
*/ | ||
public static final String[] AssemblyNames = new String[] { "C:/Users/runneradmin/AppData/Local/Temp/Newtonsoft.Json/lib/net45/Newtonsoft.Json.dll" }; | ||
/** | ||
* CreateExceptionThrownClause: true | ||
*/ | ||
public static final Boolean CreateExceptionThrownClause = true; | ||
/** | ||
* ExceptionThrownClauseDepth: 10 | ||
*/ | ||
public static final Integer ExceptionThrownClauseDepth = 10; | ||
/** | ||
* EnableAbstract: true | ||
*/ | ||
public static final Boolean EnableAbstract = true; | ||
/** | ||
* EnableArray: true | ||
*/ | ||
public static final Boolean EnableArray = true; | ||
/** | ||
* EnableDuplicateMethodNativeArrayWithJCORefOut: true | ||
*/ | ||
public static final Boolean EnableDuplicateMethodNativeArrayWithJCORefOut = true; | ||
/** | ||
* EnableInheritance: true | ||
*/ | ||
public static final Boolean EnableInheritance = true; | ||
/** | ||
* EnableInterfaceInheritance: true | ||
*/ | ||
public static final Boolean EnableInterfaceInheritance = true; | ||
/** | ||
* EnableRefOutParameters: true | ||
*/ | ||
public static final Boolean EnableRefOutParameters = true; | ||
} |
Oops, something went wrong.