Advertisement
Guest User

IntelliJ IDEA Info.Plist

a guest
Oct 23rd, 2013
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.35 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3. <plist version="1.0">
  4.   <dict>
  5.     <key>CFBundleDevelopmentRegion</key>
  6.     <string>English</string>
  7.     <key>CFBundleDocumentTypes</key>
  8.     <array>
  9.      
  10.       <dict>
  11.         <key>CFBundleTypeExtensions</key>
  12.         <array>
  13.           <string>ipr</string>
  14.         </array>
  15.         <key>CFBundleTypeIconFile</key>
  16.         <string>idea.icns</string>
  17.         <key>CFBundleTypeName</key>
  18.         <string>IntelliJ IDEA Project File</string>
  19.         <key>CFBundleTypeRole</key>
  20.         <string>Editor</string>
  21.       </dict>
  22.  
  23.       <dict>
  24.         <key>CFBundleTypeExtensions</key>
  25.         <array>
  26.           <string>*</string>
  27.         </array>
  28.         <key>CFBundleTypeName</key>
  29.         <string>All documents</string>
  30.         <key>CFBundleTypeOSTypes</key>
  31.         <array>
  32.           <string>****</string>
  33.         </array>
  34.         <key>CFBundleTypeRole</key>
  35.         <string>Editor</string>
  36.         <key>LSTypeIsPackage</key>
  37.         <false/>
  38.       </dict>
  39.     </array>
  40.     <key>CFBundleExecutable</key>
  41.     <string>idea</string>
  42.     <key>CFBundleIconFile</key>
  43.     <string>idea.icns</string>
  44.     <key>CFBundleInfoDictionaryVersion</key>
  45.     <string>6.0</string>
  46.     <key>CFBundleName</key>
  47.     <string>IntelliJ IDEA</string>
  48.     <key>CFBundlePackageType</key>
  49.     <string>APPL</string>
  50.     <key>CFBundleIdentifier</key>
  51.     <string>com.jetbrains.intellij</string>
  52.     <key>CFBundleSignature</key>
  53.     <string>????</string>
  54.     <key>CFBundleGetInfoString</key>
  55.     <string>IntelliJ IDEA EAP IU-132.425, build IU-132.425. Copyright JetBrains s.r.o., (c) 2000-2013</string>
  56.     <key>CFBundleShortVersionString</key>
  57.     <string>EAP IU-132.425</string>
  58.     <key>CFBundleVersion</key>
  59.     <string>IU-132.425</string>
  60.     <key>LSApplicationCategoryType</key>
  61.     <string>public.app-category.developer-tools</string>
  62.     <key>CFBundleHelpBookName</key>
  63.     <string>JetBrains.IJ.help</string>
  64.     <key>CFBundleHelpBookFolder</key>
  65.     <string>IJ.help</string>
  66.  
  67.     <key>NSHighResolutionCapable</key>
  68.     <true/>
  69.  
  70.     <key>LSArchitecturePriority</key>
  71.     <array>
  72.       <string>x86_64</string>
  73.       <string>i386</string>
  74.     </array>
  75.     <key>LSRequiresNativeExecution</key>
  76.     <string>YES</string>
  77.    
  78.     <key>Java</key>
  79.     <dict>
  80.       <key>ClassPath</key>
  81.       <string>$APP_PACKAGE/lib/bootstrap.jar:$APP_PACKAGE/lib/extensions.jar:$APP_PACKAGE/lib/util.jar:$APP_PACKAGE/lib/jdom.jar:$APP_PACKAGE/lib/log4j.jar:$APP_PACKAGE/lib/trove4j.jar:$APP_PACKAGE/lib/jna.jar</string>
  82.  
  83.       <key>JVMVersion</key>
  84.       <string>1.7*</string>
  85.  
  86.       <key>MainClass</key>
  87.       <string>com.intellij.idea.Main</string>
  88.       <key>Properties</key>
  89.       <dict>
  90.        
  91.         <key>idea.paths.selector</key>
  92.         <string>IntelliJIdea13</string>
  93.  
  94.       </dict>
  95.  
  96.       <key>VMOptions</key>
  97.       <string>-Dfile.encoding=UTF-8 -ea -Dsun.io.useCanonCaches=false -Djava.net.preferIPv4Stack=true -XX:+UseCodeCacheFlushing -XX:+UseConcMarkSweepGC -XX:SoftRefLRUPolicyMSPerMB=50 -XX:+HeapDumpOnOutOfMemoryError -Xverify:none -Didea.is.internal=true -Xbootclasspath/a:../lib/boot.jar</string>
  98.  
  99.       <key>WorkingDirectory</key>
  100.       <string>$APP_PACKAGE/bin</string>
  101.     </dict>
  102.   </dict>
  103. </plist>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement