LPAdesktop
1.0.0
LPA Simulator 是一款用於管理可移動 eUICC 上的 eSIM 設定檔的應用程式。
目前版本支援以下功能:
使用此工具,您可以在可拆卸 eUICC(塑膠 eSIM)上提供 eSIM 配置文件
git clone https://github.com/Truphone/LPAdesktop.git
docker-compose up
/target
資料夾中插件 launch4j-maven-plugin 不支援 ARM,請在 pom.xml 中停用它的註釋部分。
結果 - 不會產生 exe 檔。
<plugin>
<groupId>com.akathist.maven.plugins.launch4j</groupId>
<artifactId>launch4j-maven-plugin</artifactId>
<version>2.1.1</version>
<executions>
<execution>
<id>l4j-clui</id>
<phase>package</phase>
<goals>
<goal>launch4j</goal>
</goals>
<configuration>
<headerType>console</headerType>
<outfile>target/TruLPA_${project.version}/lpa.exe</outfile>
<jar>target/LPA-${project.version}-jar-with-dependencies.jar</jar>
<icon>${basedir}/src/main/resources/tru_logo.ico</icon>
<errTitle>LPA</errTitle>
<classPath>
<mainClass>com.truphone.lpap.mainUI</mainClass>
<addDependencies>true</addDependencies>
<preCp>anything</preCp>
</classPath>
<jre>
<minVersion>1.8.0</minVersion> -->
<!-- <opts>
<opt>-Djava.endorsed.dirs=./endorsed</opt>
</opts>-->
<!--
</jre>
<versionInfo>
<fileVersion>${project.version}</fileVersion>
<txtFileVersion>${project.version}</txtFileVersion>
<fileDescription>Truphone LPA Simulator</fileDescription>
<copyright>Truphone 2019</copyright>
<productVersion>${project.version}</productVersion>
<txtProductVersion>${project.version}</txtProductVersion>
<productName>Tru LPA</productName>
<internalName>LPA</internalName>
<originalFilename>lpa.exe</originalFilename>
</versionInfo>
</configuration>
</execution>
</executions>
</plugin>