8000 override from experiment branch · CJavaScala/android-pluginmgr@12fb9b1 · GitHub
[go: up one dir, main page]

Skip to content

Commit 12fb9b1

Browse files
committed
override from experiment branch
1 parent 0102472 commit 12fb9b1
< 8000 button data-component="IconButton" type="button" data-testid="collapse-file-tree-button" aria-expanded="true" aria-controls="diff_file_tree" class="prc-Button-ButtonBase-c50BI d-none d-md-flex position-relative fgColor-muted prc-Button-IconButton-szpyj" data-loading="false" data-no-visuals="true" data-size="medium" data-variant="invisible" aria-describedby=":R72plab:-loading-announcement" aria-labelledby=":R12plab:">

14 files changed

+564
-273
lines changed

PlugLoadDemo/bin/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/classes/

PlugLoadDemo/libs/pluginmgr-0.0.6.jar

-61.3 KB
Binary file not shown.

PlugLoadDemo/libs/pluginmgr-0.1.2.jar

69.8 KB
Binary file not shown.

android-pluginmgr/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/src/
2+
/target/*
3+
/.settings/

android-pluginmgr/pom.xml

Lines changed: 72 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -1,73 +1,73 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3-
<modelVersion>4.0.0</modelVersion>
4-
<groupId>com.android</groupId>
5-
<artifactId>pluginmgr</artifactId>
6-
<version>0.0.6</version>
7-
<name>androidx.pluginmgr</name>
8-
<description>dynamic load uninstalled apk</description>
9-
<dependencies>
10-
<dependency>
11-
<groupId>com.google.dexmaker</groupId>
12-
<artifactId>dexmaker</artifactId>
13-
<version>1.0</version>
14-
</dependency>
15-
<dependency>
16-
<groupId>com.google.android</groupId>
17-
<artifactId>android</artifactId>
18-
<version>2.3.3</version>
19-
</dependency>
20-
<dependency>
21-
<groupId>junit</groupId>
22-
<artifactId>junit</artifactId>
23-
<version>4.11</version>
24-
</dependency>
25-
26-
</dependencies>
27-
<build>
28-
<pluginManagement>
29-
<plugins>
30-
<plugin>
31-
<artifactId>maven-compiler-plugin</artifactId>
32-
<version>3.1</version>
33-
<executions>
34-
<execution>
35-
<id>default-testCompile</id>
36-
<phase>test-compile</phase>
37-
<goals>
38-
<goal>testCompile</goal>
39-
</goals>
40-
<configuration>
41-
<skip>src/test/java</skip>
42-
<source>1.6</source>
43-
<target>1.6</target>
44-
<encoding>UTF-8</encoding>
45-
</configuration>
46-
</execution>
47-
<execution>
48-
<id>default-compile</id>
49-
<phase>compile</phase>
50-
<goals>
51-
<goal>compile</goal>
52-
</goals>
53-
<configuration>
54-
<skip>src/test/java</skip>
55-
<source>1.6</source>
56-
<target>1.6</target>
57-
<encoding>UTF-8</encoding>
58-
</configuration>
59-
</execution>
60-
</executions>
61-
<configuration>
62-
<skip>src/test/java</skip>
63-
<source>1.6</source>
64-
<target>1.6</target>
65-
<encoding>UTF-8</encoding>
66-
</configuration>
67-
</plugin>
68-
</plugins>
69-
</pluginManagement>
70-
71-
</build>
72-
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.android</groupId>
5+
<artifactId>pluginmgr</artifactId>
6+
<version>0.1.2</version>
7+
<name>androidx.pluginmgr</name>
8+
<description>dynamic load uninstalled apk</description>
9+
<dependencies>
10+
<dependency>
11+
<groupId>com.google.dexmaker</groupId>
12+
<artifactId>dexmaker</artifactId>
13+
<version>1.0</version>
14+
</dependency>
15+
<dependency>
16+
<groupId>com.google.android</groupId>
17+
<artifactId>android</artifactId>
18+
<version>2.3.3</version>
19+
</dependency>
20+
<dependency>
21+
<groupId>junit</groupId>
22+
<artifactId>junit</artifactId>
23+
<version>4.11</version>
24+
</dependency>
25+
26+
</dependencies>
27+
<build>
28+
<pluginManagement>
29+
<plugins>
30+
<plugin>
31+
<artifactId>maven-compiler-plugin</artifactId>
32+
<version>3.1</version>
33+
<executions>
34+
<execution>
35+
<id>default-testCompile</id>
36+
<phase>test-compile</phase>
37+
<goals>
38+
<goal>testCompile</goal>
39+
</goals>
40+
<configuration>
41+
<skip>src/test/java</skip>
42+
<source>1.6</source>
43+
<target>1.6</target>
44+
<encoding>UTF-8</encoding>
45+
</configuration>
46+
</execution>
47+
<execution>
48+
<id>default-compile</id>
49+
<phase>compile</phase>
50+
<goals>
51+
<goal>compile</goal>
52+
</goals>
53+
<configuration>
54+
<skip>src/test/java</skip>
55+
<source>1.6</source>
56+
<target>1.6</target>
57+
<encoding>UTF-8</encoding>
58+
</configuration>
59+
</execution>
60+
</executions>
61+
<configuration>
62+
<skip>src/test/java</skip>
63+
<source>1.6</source>
64+
<target>1.6</target>
65+
<encoding>UTF-8</encoding>
66+
</configuration>
67+
</plugin>
68+
</plugins>
69+
</pluginManagement>
70+
71+
</build>
72+
7373
</project>

0 commit comments

Comments
 (0)
0