com.github.jspxnet:jspx-framework
Advanced tools
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
@@ -1,7 +0,5 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <configuration scan="true" scanPeriod="120 seconds" debug="${debug}"> | ||
| <?xml version="1.0" encoding="UTF-8" ?> | ||
| <configuration scan="true" scanPeriod="120 seconds" debug="${debug}" > | ||
| <!-- 定义日志文件 输入位置 --> | ||
| <property name="logPath" value="${logPath}" /> | ||
| <!-- 日志最大的历史 30天 --> | ||
| <property name="logMaxHistory" value="30"/> | ||
| <!-- ConsoleAppender 控制台输出日志 --> | ||
@@ -8,0 +6,0 @@ <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> |
| artifactId=jspx-framework | ||
| groupId=com.github.jspxnet | ||
| version=6.80 | ||
| version=6.81 |
@@ -8,4 +8,6 @@ <?xml version="1.0" encoding="UTF-8"?> | ||
| <artifactId>jspx-framework</artifactId> | ||
| <version>6.80</version> | ||
| <description>jspx cloud framework</description> | ||
| <version>6.81</version> | ||
| <description>jspx-framework</description> | ||
| <name>com.github.jspxnet:jspx-framework</name> | ||
| <url>https://github.com/jspxnet/framework</url> | ||
| <properties> | ||
@@ -18,5 +20,5 @@ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
| <github.global.server>github</github.global.server> | ||
| <tomcat.version>9.0.102</tomcat.version> | ||
| <tomcat.version>9.0.109</tomcat.version> | ||
| <jackson.version>2.18.3</jackson.version> | ||
| <redisson.version>3.45.1</redisson.version> | ||
| <redisson.version>3.51.0</redisson.version> | ||
| <log4j2.version>2.24.3</log4j2.version> | ||
@@ -33,2 +35,4 @@ <poi.version>5.3.0</poi.version> | ||
| <maven.test.skip>true</maven.test.skip> | ||
| <jacoco.path>${project.build.directory}/jacoco.exec</jacoco.path> | ||
| <jacoco.skip>false</jacoco.skip> | ||
| <!-- | ||
@@ -41,2 +45,13 @@ 查看依赖树:mvn dependency:tree | ||
| </properties> | ||
| <organization> | ||
| <name>jspxnet</name> | ||
| <url>https://www.jspx.net</url> | ||
| </organization> | ||
| <repositories> | ||
| <repository> | ||
| <id>redisson</id> | ||
| <url>https://repo.redisson.org/</url> | ||
| </repository> | ||
| </repositories> | ||
| <licenses> | ||
@@ -48,25 +63,79 @@ <license> | ||
| </licenses> | ||
| <developers> | ||
| <developer> | ||
| <name>chenyuan</name> | ||
| <email>39793751@qq.com</email> | ||
| <url>http://www.jspx.net</url> | ||
| </developer> | ||
| </developers> | ||
| <!-- | ||
| mvn dependency:copy-dependencies -DoutputDirectory=target/lib -DincludeScope=compile | ||
| --> | ||
| <scm> | ||
| <url>scm:git:git@github.com:jspxnet/framework.git</url> | ||
| <connection>https://github.com/jspxnet/framework.git</connection> | ||
| <developerConnection>scm:git:git@github.com:jspxnet/framework.git</developerConnection> | ||
| <url>https://github.com/jspxnet/framework</url> | ||
| <connection>https://github.com/jspxnet/framework.git</connection> | ||
| <tag>${project.version}</tag> | ||
| </scm> | ||
| <parent> | ||
| <groupId>org.sonatype.oss</groupId> | ||
| <artifactId>oss-parent</artifactId> | ||
| <version>7</version> | ||
| </parent> | ||
| <profiles> | ||
| <profile> | ||
| <id>release</id> | ||
| <build> | ||
| <plugins> | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-source-plugin</artifactId> | ||
| <version>3.2.1</version> | ||
| <executions> | ||
| <execution> | ||
| <id>attach-sources</id> | ||
| <goals> | ||
| <goal>jar-no-fork</goal> | ||
| </goals> | ||
| </execution> | ||
| </executions> | ||
| </plugin> | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-javadoc-plugin</artifactId> | ||
| <version>3.10.1</version> | ||
| <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>3.0.1</version> | ||
| <executions> | ||
| <execution> | ||
| <id>sign-artifacts</id> | ||
| <phase>verify</phase> | ||
| <goals> | ||
| <goal>sign</goal> | ||
| </goals> | ||
| <configuration> | ||
| <gpgArguments> | ||
| <arg>--pinentry-mode</arg> | ||
| <arg>loopback</arg> | ||
| </gpgArguments> | ||
| </configuration> | ||
| </execution> | ||
| </executions> | ||
| </plugin> | ||
| </plugins> | ||
| </build> | ||
| </profile> | ||
| </profiles> | ||
| <distributionManagement> | ||
| <snapshotRepository> | ||
| <id>sonatype-nexus-snapshots</id> | ||
| <url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
| </snapshotRepository> | ||
| <repository> | ||
| <id>sonatype-nexus-staging</id> | ||
| <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> | ||
| </repository> | ||
| <!-- 已迁移至 Sonatype Central Publishing Portal,此配置不再需要 --> | ||
| </distributionManagement> | ||
| <issueManagement> | ||
@@ -76,9 +145,3 @@ <system>GitHub Issues</system> | ||
| </issueManagement> | ||
| <developers> | ||
| <developer> | ||
| <name>chenyuan</name> | ||
| <email>39793751@qq.com</email> | ||
| <url>http://www.jspx.net</url> | ||
| </developer> | ||
| </developers> | ||
| <dependencies> | ||
@@ -88,6 +151,5 @@ <dependency> | ||
| <artifactId>lombok</artifactId> | ||
| <version>1.18.38</version> | ||
| <version>1.18.42</version> | ||
| <scope>compile</scope> | ||
| </dependency> | ||
| <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 --> | ||
| <dependency> | ||
@@ -128,7 +190,7 @@ <groupId>org.apache.tomcat</groupId> | ||
| </dependency> | ||
| <!-- <dependency> | ||
| <groupId>org.apache.tomcat</groupId> | ||
| <artifactId>tomcat-websocket-api</artifactId> | ||
| <version>${tomcat.version}</version> | ||
| </dependency>--> | ||
| <!-- <dependency> | ||
| <groupId>org.apache.tomcat</groupId> | ||
| <artifactId>tomcat-websocket-api</artifactId> | ||
| <version>${tomcat.version}</version> | ||
| </dependency>--> | ||
| <dependency> | ||
@@ -215,5 +277,8 @@ <groupId>com.fasterxml.jackson.core</groupId> | ||
| </dependency> | ||
| <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec --> | ||
| <dependency> | ||
| <groupId>commons-codec</groupId> | ||
| <artifactId>commons-codec</artifactId> | ||
| <version>1.19.0</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.sun.mail</groupId> | ||
@@ -238,3 +303,3 @@ <artifactId>javax.mail</artifactId> | ||
| <artifactId>commons-compress</artifactId> | ||
| <version>1.27.1</version> | ||
| <version>1.28.0</version> | ||
| </dependency> | ||
@@ -331,8 +396,21 @@ <dependency> | ||
| <artifactId>aliyun-java-sdk-core</artifactId> | ||
| <version>4.6.4</version> | ||
| <version>4.7.6</version> | ||
| <scope>provided</scope> | ||
| <exclusions> | ||
| <exclusion> | ||
| <groupId>org.bouncycastle</groupId> | ||
| <artifactId>bcprov-jdk15on</artifactId> | ||
| <groupId>junit</groupId> | ||
| <artifactId>junit</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
| <groupId>com.google.code.gson</groupId> | ||
| <artifactId>gson</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
| <groupId>org.apache.httpcomponents</groupId> | ||
| <artifactId>httpclient</artifactId> | ||
| </exclusion> | ||
| <exclusion> | ||
| <groupId>org.apache.httpcomponents</groupId> | ||
| <artifactId>httpcore</artifactId> | ||
| </exclusion> | ||
| </exclusions> | ||
@@ -353,3 +431,4 @@ </dependency> | ||
| <artifactId>aliyun-sdk-oss</artifactId> | ||
| <version>3.17.1</version> | ||
| <version>3.18.3</version> | ||
| <scope>provided</scope> | ||
| </dependency> | ||
@@ -500,9 +579,11 @@ <dependency> | ||
| <version>5.13.3.202401111512-r</version> | ||
| <scope>provided</scope> | ||
| </dependency> | ||
| <!--测试基础支持begin --> | ||
| <!-- https://mvnrepository.com/artifact/org.postgresql/postgresql --> | ||
| <dependency> | ||
| <groupId>org.postgresql</groupId> | ||
| <artifactId>postgresql</artifactId> | ||
| <version>42.7.5</version> | ||
| <version>42.7.7</version> | ||
| <scope>provided</scope> | ||
@@ -513,3 +594,3 @@ </dependency> | ||
| <artifactId>mysql-connector-j</artifactId> | ||
| <version>9.1.0</version> | ||
| <version>9.4.0</version> | ||
| <scope>provided</scope> | ||
@@ -523,13 +604,3 @@ </dependency> | ||
| </dependency> | ||
| <!-- <dependency> | ||
| <groupId>net.sourceforge.jtds</groupId> | ||
| <artifactId>jtds</artifactId> | ||
| <version>1.3.1</version> | ||
| <scope>provided</scope> | ||
| </dependency>--> | ||
| <!-- <dependency> | ||
| <groupId>com.google.protobuf</groupId> | ||
| <artifactId>protobuf-java</artifactId> | ||
| <version>3.23.4</version> | ||
| </dependency>--> | ||
| <dependency> | ||
@@ -550,3 +621,3 @@ <groupId>com.google.code.gson</groupId> | ||
| <artifactId>netty-all</artifactId> | ||
| <version>4.2.0.Final</version> | ||
| <version>4.2.4.Final</version> | ||
| </dependency> | ||
@@ -557,3 +628,3 @@ <!-- https://mvnrepository.com/artifact/commons-io/commons-io --> | ||
| <artifactId>commons-io</artifactId> | ||
| <version>2.18.0</version> | ||
| <version>2.20.0</version> | ||
| </dependency> | ||
@@ -586,2 +657,8 @@ <!--测试基础支持end --> | ||
| <version>${redisson.version}</version> | ||
| <exclusions> | ||
| <exclusion> | ||
| <groupId>io.netty</groupId> | ||
| <artifactId>*</artifactId> | ||
| </exclusion> | ||
| </exclusions> | ||
| </dependency> | ||
@@ -595,27 +672,9 @@ <dependency> | ||
| <!-- <dependency> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-compiler-plugin</artifactId> | ||
| <version>3.12.1</version> | ||
| <scope>provided</scope> | ||
| </dependency>--> | ||
| <!-- <dependency> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-project-info-reports-plugin</artifactId> | ||
| <version>3.4.1</version> | ||
| <scope>provided</scope> | ||
| </dependency>--> | ||
| <!-- <dependency> | ||
| <dependency> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-checkstyle-plugin</artifactId> | ||
| <version>3.2.0</version> | ||
| <artifactId>maven-compiler-plugin</artifactId> | ||
| <version>3.12.1</version> | ||
| <scope>provided</scope> | ||
| </dependency>--> | ||
| <!-- <dependency> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-jxr-plugin</artifactId> | ||
| <version>3.5.0</version> | ||
| <scope>provided</scope> | ||
| </dependency>--> | ||
| <!-- https://mvnrepository.com/artifact/com.vladsch.flexmark/flexmark-all --> | ||
| </dependency> | ||
| <dependency> | ||
@@ -711,4 +770,5 @@ <groupId>com.google.guava</groupId> | ||
| <artifactId>httpclient5</artifactId> | ||
| <version>5.4.1</version> | ||
| <version>5.5</version> | ||
| </dependency> | ||
| </dependencies> | ||
@@ -743,2 +803,3 @@ | ||
| </resources> | ||
| <pluginManagement> | ||
@@ -748,2 +809,35 @@ <plugins> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-deploy-plugin</artifactId> | ||
| <version>2.8.2</version> <!-- 使用适合你项目的版本 --> | ||
| <executions> | ||
| <execution> | ||
| <id>default-deploy</id> | ||
| <phase>deploy</phase> | ||
| <goals> | ||
| <goal>deploy</goal> | ||
| </goals> | ||
| </execution> | ||
| </executions> | ||
| </plugin> | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-source-plugin</artifactId> | ||
| <version>3.2.1</version> | ||
| <executions> | ||
| <execution> | ||
| <id>attach-sources</id> | ||
| <goals> | ||
| <goal>jar-no-fork</goal> | ||
| </goals> | ||
| </execution> | ||
| </executions> | ||
| </plugin> | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-pmd-plugin</artifactId> | ||
| <version>3.15.0</version> | ||
| </plugin> | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-site-plugin</artifactId> | ||
@@ -759,2 +853,19 @@ <version>3.12.1</version> | ||
| <version>3.5.0</version> | ||
| <executions> | ||
| <execution> | ||
| <id>enforce-no-snapshots</id> | ||
| <goals> | ||
| <goal>enforce</goal> | ||
| </goals> | ||
| <configuration> | ||
| <rules> | ||
| <requireReleaseDeps> | ||
| <message>No Snapshots Allowed!</message> | ||
| <onlyWhenRelease>true</onlyWhenRelease> | ||
| </requireReleaseDeps> | ||
| </rules> | ||
| <fail>true</fail> | ||
| </configuration> | ||
| </execution> | ||
| </executions> | ||
| </plugin> | ||
@@ -794,29 +905,3 @@ <plugin> | ||
| <plugin> | ||
| <groupId>org.sonatype.plugins</groupId> | ||
| <artifactId>nexus-staging-maven-plugin</artifactId> | ||
| <version>1.6.14</version> | ||
| <extensions>true</extensions> | ||
| <configuration> | ||
| <serverId>sonatype-oss-release</serverId> | ||
| <nexusUrl>https://oss.sonatype.org/</nexusUrl> | ||
| <autoReleaseAfterClose>true</autoReleaseAfterClose> | ||
| <sslAllowAll>true</sslAllowAll> | ||
| <stagingProgressPauseDurationSeconds>20</stagingProgressPauseDurationSeconds> | ||
| <stagingProgressTimeoutMinutes>20</stagingProgressTimeoutMinutes> | ||
| </configuration> | ||
| </plugin> | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-release-plugin</artifactId> | ||
| <version>3.1.1</version> | ||
| <configuration> | ||
| <arguments>-Psonatype-oss-release</arguments> | ||
| <autoVersionSubmodules>true</autoVersionSubmodules> | ||
| <useReleaseProfile>true</useReleaseProfile> | ||
| <releaseProfiles>release</releaseProfiles> | ||
| <goals>deploy</goals> | ||
| </configuration> | ||
| </plugin> | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-compiler-plugin</artifactId> | ||
@@ -923,30 +1008,159 @@ <version>3.13.0</version> | ||
| </plugin> | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-release-plugin</artifactId> | ||
| <version>3.1.2</version> | ||
| <configuration> | ||
| <autoVersionSubmodules>true</autoVersionSubmodules> | ||
| <useReleaseProfile>false</useReleaseProfile> | ||
| <releaseProfiles>release</releaseProfiles> | ||
| <goals>deploy</goals> | ||
| </configuration> | ||
| </plugin> | ||
| <plugin> | ||
| <artifactId>maven-deploy-plugin</artifactId> | ||
| <version>3.1.2</version> | ||
| <!-- | ||
| mvn clean deploy -P sonatype-oss-release | ||
| --> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-scm-plugin</artifactId> | ||
| <version>2.1.0</version> | ||
| </plugin> | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-gpg-plugin</artifactId> | ||
| <version>3.0.1</version> | ||
| <executions> | ||
| <execution> | ||
| <id>default-deploy</id> | ||
| <phase>deploy</phase> | ||
| <id>sign-artifacts</id> | ||
| <phase>verify</phase> | ||
| <goals> | ||
| <goal>deploy</goal> | ||
| <goal>sign</goal> | ||
| </goals> | ||
| <configuration> | ||
| <gpgArguments> | ||
| <argument>--pinentry-mode</argument> | ||
| <argument>loopback</argument> | ||
| </gpgArguments> | ||
| <keyname>31F8AA0673A9B96B6A84E1D2F39ED15E95EEE351</keyname> | ||
| </configuration> | ||
| </execution> | ||
| </executions> | ||
| </plugin> | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-scm-plugin</artifactId> | ||
| <version>2.1.0</version> | ||
| <artifactId>maven-checksum-plugin</artifactId> | ||
| <version>1.11</version> | ||
| <executions> | ||
| <execution> | ||
| <goals> | ||
| <goal>files</goal> | ||
| </goals> | ||
| </execution> | ||
| </executions> | ||
| </plugin> | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-assembly-plugin</artifactId> | ||
| <version>3.3.0</version> | ||
| <configuration> | ||
| <descriptorRefs> | ||
| <descriptorRef>project</descriptorRef> | ||
| </descriptorRefs> | ||
| </configuration> | ||
| <executions> | ||
| <execution> | ||
| <id>make-assembly</id> | ||
| <phase>package</phase> | ||
| <goals> | ||
| <goal>single</goal> | ||
| </goals> | ||
| </execution> | ||
| </executions> | ||
| </plugin> | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-dependency-plugin</artifactId> | ||
| <version>3.1.2</version> <!-- 使用最新版本 --> | ||
| <executions> | ||
| <execution> | ||
| <id>generate-sha1</id> | ||
| <phase>package</phase> <!-- 在package阶段运行 --> | ||
| <goals> | ||
| <goal>build-classpath</goal> <!-- 使用build-classpath目标 --> | ||
| </goals> | ||
| <configuration> | ||
| <outputFile>${project.build.directory}/dependency-classpath.txt</outputFile> <!-- 输出文件 --> | ||
| </configuration> | ||
| </execution> | ||
| <!-- 添加一个额外的执行来生成SHA-1 --> | ||
| <execution> | ||
| <id>generate-sha1-file</id> <!-- 唯一ID --> | ||
| <phase>package</phase> <!-- 绑定到package阶段 --> | ||
| <configuration> <!-- 配置输出目录和算法 --> | ||
| <hashAlgorithms>[SHA-1]</hashAlgorithms> | ||
| <outputDirectoryPathPattern>[SHA-1]</outputDirectoryPathPattern> | ||
| <outputFilePattern>[SHA-1]</outputFilePattern> | ||
| <!-- 其他可能的配置,例如指定要计算的jar文件 --> | ||
| </configuration> | ||
| </execution> | ||
| </executions> | ||
| </plugin> | ||
| </plugins> | ||
| </pluginManagement> | ||
| <plugins> | ||
| <plugin> | ||
| <groupId>org.sonatype.central</groupId> | ||
| <artifactId>central-publishing-maven-plugin</artifactId> | ||
| <version>0.8.0</version> | ||
| <extensions>true</extensions> | ||
| <configuration> | ||
| <publishingServerId>central</publishingServerId> | ||
| <autoPublish>true</autoPublish> | ||
| </configuration> | ||
| </plugin> | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-source-plugin</artifactId> | ||
| <version>3.2.1</version> | ||
| <executions> | ||
| <execution> | ||
| <id>attach-sources</id> | ||
| <goals> | ||
| <goal>jar-no-fork</goal> | ||
| </goals> | ||
| </execution> | ||
| </executions> | ||
| </plugin> | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-javadoc-plugin</artifactId> | ||
| <version>3.10.1</version> | ||
| <configuration> | ||
| <encoding>UTF-8</encoding> | ||
| <charset>UTF-8</charset> | ||
| <docencoding>UTF-8</docencoding> | ||
| <show>public</show> | ||
| <detectLinks>false</detectLinks> | ||
| <detectOfflineLinks>true</detectOfflineLinks> | ||
| <linksource>true</linksource> | ||
| <detectJavaApiLink>false</detectJavaApiLink> | ||
| <links> | ||
| <link>http://docs.oracle.com/javase/8/docs/api</link> | ||
| </links> | ||
| </configuration> | ||
| <executions> | ||
| <execution> | ||
| <id>attach-javadocs</id> | ||
| <phase>package</phase> | ||
| <goals> | ||
| <goal>jar</goal> | ||
| </goals> | ||
| </execution> | ||
| </executions> | ||
| </plugin> | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-gpg-plugin</artifactId> | ||
| <version>3.2.4</version> | ||
| <version>3.0.1</version> | ||
| <executions> | ||
@@ -959,2 +1173,8 @@ <execution> | ||
| </goals> | ||
| <configuration> | ||
| <gpgArguments> | ||
| <arg>--pinentry-mode</arg> | ||
| <arg>loopback</arg> | ||
| </gpgArguments> | ||
| </configuration> | ||
| </execution> | ||
@@ -964,13 +1184,4 @@ </executions> | ||
| </plugins> | ||
| </pluginManagement> | ||
| </build> | ||
| <reporting> | ||
| <plugins> | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-surefire-report-plugin</artifactId> | ||
| <version>3.1.2</version> | ||
| </plugin> | ||
| </plugins> | ||
| </reporting> | ||
| </project> |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet